mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 13:09:11 +01:00
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:
@@ -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
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
author: Runa-Dacino
|
||||
delete-after: True
|
||||
changes:
|
||||
- rscadd: "Adds the ability to change gender identity on the fly. It can be found under "IC" tab."
|
||||
|
||||
Reference in New Issue
Block a user