Adds ability to change gender identity mid-round (#1)

* Adds the ability to toggle gender identity in game

Adds the ability to toggle gender identity freely while playing the character.

* Fixes compiler error, gets it to work

* Adds changelog.
This commit is contained in:
Runa Dacino
2017-12-01 01:17:21 +01:00
committed by GitHub
parent 92afd5e970
commit a872500490
2 changed files with 15 additions and 0 deletions
@@ -122,3 +122,13 @@
update_wing_showing()
return 1
/mob/living/carbon/human/verb/toggle_gender_identity_vr()
set name = "Set Gender Identity"
set desc = "Sets the pronouns when examined and performing an emote."
set category = "IC"
var/new_gender_identity = input("Please select a gender Identity.") as null|anything in list(FEMALE, MALE, NEUTER, PLURAL)
if(!new_gender_identity)
return 0
change_gender_identity(new_gender_identity)
return 1