From a64e95104e2ddbc86332daadb0a19b7128d86588 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 5 Feb 2016 22:30:43 -0500 Subject: [PATCH] Removes Mindswap Suiciding --- code/datums/spells/mind_transfer.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/datums/spells/mind_transfer.dm b/code/datums/spells/mind_transfer.dm index 90b6f25ab4d..6d7b0539fb1 100644 --- a/code/datums/spells/mind_transfer.dm +++ b/code/datums/spells/mind_transfer.dm @@ -42,6 +42,10 @@ Also, you never added distance checking after target is selected. I've went ahea user << "They appear to be catatonic. Not even magic can affect their vacant mind." return + if(user.suiciding) + user << "You're killing yourself! You can't concentrate enough to do this!" + return + if(target.mind.special_role in protected_roles) user << "Their mind is resisting your spell." return