From 6b7278c40f75de73699d3c68cf14441ae3eefa4a Mon Sep 17 00:00:00 2001 From: Kyep Date: Sun, 7 Jan 2018 01:20:04 -0800 Subject: [PATCH] allows syndicat/syndifox during nukeop rounds --- code/modules/mob/transform_procs.dm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 58e062cbae8..aa1607db9af 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -274,8 +274,9 @@ if(!MP) return 0 - if(ispath(MP, /mob/living/simple_animal/pet/cat/Syndi)) - return 0 + if(!GAMEMODE_IS_NUCLEAR) + if(ispath(MP, /mob/living/simple_animal/pet/cat/Syndi)) + return 0 if(ispath(MP, /mob/living/simple_animal/pet/cat)) return 1 if(ispath(MP, /mob/living/simple_animal/pet/corgi)) @@ -290,8 +291,9 @@ return 1 if(ispath(MP, /mob/living/simple_animal/pony)) return 1 - if(ispath(MP, /mob/living/simple_animal/pet/fox/Syndifox)) - return 0 + if(!GAMEMODE_IS_NUCLEAR) + if(ispath(MP, /mob/living/simple_animal/pet/fox/Syndifox)) + return 0 if(ispath(MP, /mob/living/simple_animal/pet/fox)) return 1 if(ispath(MP, /mob/living/simple_animal/chick))