From 0ae196b92adbdfec094ba8bcf42e594a0950cc52 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Tue, 28 Feb 2017 13:20:02 -0500 Subject: [PATCH] Fixes runtimes with rapid fire again (#24508) --- code/modules/mob/living/simple_animal/hostile/hostile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/hostile.dm b/code/modules/mob/living/simple_animal/hostile/hostile.dm index 86af56e16214..aac60f82fe53 100644 --- a/code/modules/mob/living/simple_animal/hostile/hostile.dm +++ b/code/modules/mob/living/simple_animal/hostile/hostile.dm @@ -329,7 +329,7 @@ visible_message("[src] [ranged_message] at [A]!") if(rapid) - var/datum/callback/cb = CALLBACK(A, .proc/Shoot) + var/datum/callback/cb = CALLBACK(src, .proc/Shoot, A) addtimer(cb, 1) addtimer(cb, 4) addtimer(cb, 6)