From 6145b939fabe9db409e25e2f8970b73ce7f5e9a4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 7 Jul 2017 06:47:28 -0500 Subject: [PATCH] Fix incorrect call to do_attack_animation (#1920) --- code/modules/mob/living/simple_animal/guardian/types/support.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/guardian/types/support.dm b/code/modules/mob/living/simple_animal/guardian/types/support.dm index 3d7ae48443..4b5f7c2de5 100644 --- a/code/modules/mob/living/simple_animal/guardian/types/support.dm +++ b/code/modules/mob/living/simple_animal/guardian/types/support.dm @@ -130,7 +130,7 @@ to_chat(src, "You begin to warp [A].") A.visible_message("[A] starts to glow faintly!", \ "You start to faintly glow, and you feel strangely weightless!") - do_attack_animation(A, null, 1) + do_attack_animation(A) if(!do_mob(src, A, 60)) //now start the channel to_chat(src, "You need to hold still!")