From e05594f5b59be140f2ce5979eea6c9d7122e47ee Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Sun, 1 Jul 2018 16:45:44 -0400 Subject: [PATCH] Ragin' Mages Spell Cast Fix --- code/datums/spell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/spell.dm b/code/datums/spell.dm index 04949130a07..f251fed2951 100644 --- a/code/datums/spell.dm +++ b/code/datums/spell.dm @@ -421,7 +421,7 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin if(((!user.mind) || !(src in user.mind.spell_list)) && !(src in user.mob_spell_list)) return 0 - if(is_admin_level(user.z) && (!centcom_cancast || ticker.mode.name == "ragin' mages")) //Certain spells are not allowed on the centcom zlevel + if(is_admin_level(user.z) && !centcom_cancast) //Certain spells are not allowed on the centcom zlevel return 0 switch(charge_type)