From be8d2f8f99cdba5c16e17628911bdacc8455a152 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 4 Oct 2013 02:59:15 -0400 Subject: [PATCH] Allowed suicide for everyone --- code/game/verbs/suicide.dm | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index ee37b5eb9c8..7f963bb4e1c 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -12,18 +12,6 @@ return - var/permitted = 0 - var/list/allowed = list("Syndicate","traitor","Wizard","Head Revolutionary","Cultist","Changeling") - for(var/T in allowed) - if(mind.special_role == T) - permitted = 1 - break - - if(!permitted) - message_admins("[ckey] has tried to suicide, but they were not permitted due to not being antagonist as human.", 1) - src << "No. Adminhelp if there is a legitimate reason." - return - if (suiciding) src << "You're already committing suicide! Be patient!" return