From 90e2fd1b270b0f70758071c367f995ae7e317baa Mon Sep 17 00:00:00 2001 From: Yoshax Date: Sat, 20 Feb 2016 02:25:11 +0000 Subject: [PATCH] Fixes #987 --- code/modules/mob/living/simple_animal/constructs/soulstone.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/simple_animal/constructs/soulstone.dm b/code/modules/mob/living/simple_animal/constructs/soulstone.dm index b03fe79b143..54fd7382791 100644 --- a/code/modules/mob/living/simple_animal/constructs/soulstone.dm +++ b/code/modules/mob/living/simple_animal/constructs/soulstone.dm @@ -19,6 +19,9 @@ return ..() if(istype(M, /mob/living/carbon/human/dummy)) return..() + if(jobban_isbanned(M, "cultist")) + user << "This person's soul is too corrupt and cannot be captured!" + return..() if(M.has_brain_worms()) //Borer stuff - RR user << "This being is corrupted by an alien intelligence and cannot be soul trapped."