From 852abe91ab30b0bd1c4e5023e624595936373e02 Mon Sep 17 00:00:00 2001 From: FluffMedic <109300046+FluffMedic@users.noreply.github.com> Date: Sat, 12 Jul 2025 16:21:59 -0400 Subject: [PATCH] Fixed missing vaules (#11174) --- .../simple_mob/subtypes/mechanical/hivebot/orginalAlts.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/orginalAlts.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/orginalAlts.dm index 0d21934911..9d7a60b33d 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/orginalAlts.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/orginalAlts.dm @@ -58,7 +58,7 @@ attackcycle = 0 else if(attackcycle == 3) specialattackprojectile = /obj/item/projectile/energy/spikeenergy_ball/boss - addtimer(CALLBACK(src, PROC_REF(dual_spin), A, 4), 1 SECOND, TIMER_DELETE_ME) + addtimer(CALLBACK(src, PROC_REF(dual_spin), A, 4, 25), 1 SECOND, TIMER_DELETE_ME) attackcycle = 0 else if(attackcycle == 4) specialattackprojectile = /obj/item/projectile/energy/spikeenergy_ball/boss @@ -124,7 +124,7 @@ specialattackprojectile = /obj/item/projectile/energy/wallbreaker/boss rng_cycle = rand(1,4) say("PROTOCOL: PRECISION. SWEEP.") - addtimer(CALLBACK(src, PROC_REF(dual_spin), A, rng_cycle), 2 SECONDS, TIMER_DELETE_ME) + addtimer(CALLBACK(src, PROC_REF(dual_spin), A, rng_cycle, 25), 2 SECONDS, TIMER_DELETE_ME) attackcycle = 0 else if(attackcycle == 3) specialattackprojectile = /obj/item/projectile/energy/lightingspark/nanoweave