diff options
author | gumi <git@gumi.ca> | 2020-04-25 19:39:59 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-04-25 19:40:16 -0400 |
commit | 229ddd2afb47cf2aeeae42f5ce6064d59e69ac42 (patch) | |
tree | bd7e6d42b232707c02cb6532bb84db4a9c5960b4 /src/emap | |
parent | 17221278d8a4fd2877c89aea93a76bdc2603357a (diff) | |
download | evol-hercules-229ddd2afb47cf2aeeae42f5ce6064d59e69ac42.tar.gz evol-hercules-229ddd2afb47cf2aeeae42f5ce6064d59e69ac42.tar.bz2 evol-hercules-229ddd2afb47cf2aeeae42f5ce6064d59e69ac42.tar.xz evol-hercules-229ddd2afb47cf2aeeae42f5ce6064d59e69ac42.zip |
I hate myself for doing this
remove mentions of a non-binary gender, because it's evil
backlog, for future reference:
<{41444d494e}> i against any gay propaganda. and clean said more than two genders is gay propaganda. if need more than 2 genders, use for other genders word hidden
Diffstat (limited to 'src/emap')
-rw-r--r-- | src/emap/pc.c | 2 | ||||
-rw-r--r-- | src/emap/script.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/pc.c b/src/emap/pc.c index 5a8b527..fda6818 100644 --- a/src/emap/pc.c +++ b/src/emap/pc.c @@ -66,7 +66,7 @@ static int epc_changesex(TBL_PC *sd, unsigned char sex) switch (sex) { case GENDER_FEMALE: case GENDER_MALE: - case GENDER_NONBINARY: + case GENDER_HIDDEN: sd->status.sex = sex; break; default: diff --git a/src/emap/script.c b/src/emap/script.c index 00d26e6..9e6add6 100644 --- a/src/emap/script.c +++ b/src/emap/script.c @@ -95,7 +95,7 @@ void escript_hardcoded_constants_pre(void) script->set_constant("Gender", SP_SEX, true, false); script->set_constant("GENDER_FEMALE", GENDER_FEMALE, false, false); script->set_constant("GENDER_MALE", GENDER_MALE, false, false); - script->set_constant("GENDER_NONBINARY", GENDER_NONBINARY, false, false); + script->set_constant("GENDER_HIDDEN", GENDER_HIDDEN, false, false); script->constdb_comment(NULL); eskill_addskill_conststants(); } |