From 97fa94e9c6afe6faac6ba4b975eb120c41d8a0ed Mon Sep 17 00:00:00 2001 From: oranges Date: Fri, 7 Jul 2017 15:41:39 +1200 Subject: [PATCH] Fix incorrect call to do_attack_animation (#29072) This was causing a runtime as 1 is not a valid parameter --- 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 3d7ae484432..4b5f7c2de5b 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!")