Adds the ability to choose plural and neuter genders (labelled "non-binary" and "object", respectively) (#7731)

* Allows choosing neuter and plural gender options (labelled ingame as "object" and "non-binary" respectively)

* tfw the code argues fuckin semantics with you
This commit is contained in:
deathride58
2018-11-16 17:54:55 -05:00
committed by kevinz000
parent 43b99740c5
commit f04c7775e0
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -349,7 +349,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
//Sanitize
real_name = reject_bad_name(real_name)
gender = sanitize_gender(gender)
gender = sanitize_gender(gender, TRUE, TRUE)
if(!real_name)
real_name = random_unique_name(gender)