Merge pull request #1670 from Citadel-Station-13/upstream-merge-28549

[MIRROR] Makes gender change potions more noticeable
This commit is contained in:
LetterJay
2017-06-19 20:47:56 -05:00
committed by GitHub
@@ -401,10 +401,10 @@
if(L.gender == MALE)
L.gender = FEMALE
L.visible_message("<span class='notice'>[L] suddenly looks more feminine!</span>")
L.visible_message("<span class='boldnotice'>[L] suddenly looks more feminine!</span>", "<span class='boldwarning'>You suddenly feel more feminine!</span>")
else
L.gender = MALE
L.visible_message("<span class='notice'>[L] suddenly looks more masculine!</span>")
L.visible_message("<span class='boldnotice'>[L] suddenly looks more masculine!</span>", "<span class='boldwarning'>You suddenly feel more masculine!</span>")
L.regenerate_icons()
qdel(src)