From 9f7245fdf194caaba51c50eecac406468feb5048 Mon Sep 17 00:00:00 2001 From: IK3I Date: Thu, 20 Apr 2017 18:53:55 -0500 Subject: [PATCH] Fixes an oversight for potential abuse --- code/modules/mob/living/carbon/alien/humanoid/emote.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/emote.dm b/code/modules/mob/living/carbon/alien/humanoid/emote.dm index 95729c84625..d65578eabfc 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/emote.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/emote.dm @@ -16,6 +16,8 @@ switch(act) if("flip") on_CD = handle_emote_CD() + if("superflip") + on_CD = handle_emote_CD(100) if(on_CD) @@ -121,8 +123,8 @@ src.SpinAnimation(5,1) if("superflip") m_type = 1 - message = "The [src] starts flipping!" - src.reagents.add_reagent("fliptonium", 100) + message = "The [src] gets ready to flip into oblivion!" + src.reagents.add_reagent("fliptonium", 1) if("laugh") return //deals with the fliptonium issue if("help")