diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.h | 4 | ||||
-rw-r--r-- | src/being/beingflag.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index 11593a1ea..ecb684053 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -934,7 +934,7 @@ class Being notfinal : public ActorSprite, return 0; case Gender::MALE: return 1; - case Gender::OTHER: + case Gender::HIDDEN: return 3; } } @@ -950,7 +950,7 @@ class Being notfinal : public ActorSprite, case 1: return Gender::MALE; case 3: - return Gender::OTHER; + return Gender::HIDDEN; } } diff --git a/src/being/beingflag.h b/src/being/beingflag.h index 98bc66813..dede3c9fa 100644 --- a/src/being/beingflag.h +++ b/src/being/beingflag.h @@ -28,7 +28,7 @@ namespace BeingFlag SHOP = 1, AWAY = 2, INACTIVE = 4, - GENDER_OTHER = 32, + GENDER_HIDDEN = 32, GM = 64, GENDER_MALE = 128, SPECIAL = 128 + 64 |