diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 3b81002e893..c85afe8e95c 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1502,7 +1502,7 @@ Values up to 1000 are allowed.", "FPS", fps) as null|num //Debugging report to track down a bug, which randomly assigned the plural gender to people. if(character.gender in list(PLURAL, NEUTER)) - if(isliving(character)) //Ghosts get neuter by default + if(isliving(character) && !ismushroom(character)) //Ghosts and mushroom people are neuter by default message_admins("[character] ([character.ckey]) has spawned with their gender as plural or neuter. Please notify coders.") character.setGender(MALE)