From 683448fd50506186a8c47b8a6ac57363422d7b9c Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:54:48 -0700 Subject: [PATCH] [MIRROR] Hotfix for species whitelist command (#12046) Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> --- code/modules/tgs_commands/vorestation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/tgs_commands/vorestation.dm b/code/modules/tgs_commands/vorestation.dm index 56817a136d..282dbb2e68 100644 --- a/code/modules/tgs_commands/vorestation.dm +++ b/code/modules/tgs_commands/vorestation.dm @@ -455,7 +455,7 @@ GLOBAL_LIST_EMPTY(pending_discord_registrations) message.text = "Error, job \"[role]\" is not a whitelist job." return message if(kind == "species") - if(role in GLOB.playable_species) + if(!(role in GLOB.playable_species)) message.text = "Error, invalid species entered. Check spelling and capitalization." return message if(!(role in GLOB.whitelisted_species))