mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
fix false alarm debug message for mushroom people (#33666)
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user