From c905fb9bc73e0e4b5146ff2dfbb50640d1cd0e80 Mon Sep 17 00:00:00 2001 From: Dibasic Date: Tue, 27 Oct 2015 15:14:40 -0500 Subject: [PATCH] Reduces wizard subjugate duration Reduces wizard subjugate duration to one third of previous duration. General agreement in this thread: http://baystation12.net/forums/threads/vote-remove-wizard-subjugate.1007/ Because a robeless spell shouldn't take you out of the round for as long as the respawn timer lasts. --- code/modules/spells/targeted/subjugate.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/spells/targeted/subjugate.dm b/code/modules/spells/targeted/subjugate.dm index 8f6efa3c14..ac5312c3de 100644 --- a/code/modules/spells/targeted/subjugate.dm +++ b/code/modules/spells/targeted/subjugate.dm @@ -11,9 +11,9 @@ max_targets = 1 - amt_dizziness = 300 - amt_confused = 300 - amt_stuttering = 300 + amt_dizziness = 100 + amt_confused = 100 + amt_stuttering = 100 compatible_mobs = list(/mob/living/carbon/human)