From 4242a6bf7c1954c580e09da92bec8fadc35870fe Mon Sep 17 00:00:00 2001 From: blackdragonTOW <31581761+blackdragonTOW@users.noreply.github.com> Date: Sat, 2 Dec 2023 20:00:55 -0800 Subject: [PATCH] Update code/modules/cm_marines/dropship_ammo.dm Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- code/modules/cm_marines/dropship_ammo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cm_marines/dropship_ammo.dm b/code/modules/cm_marines/dropship_ammo.dm index 4c8d586d4d6f..7e655fce55b6 100644 --- a/code/modules/cm_marines/dropship_ammo.dm +++ b/code/modules/cm_marines/dropship_ammo.dm @@ -169,7 +169,7 @@ for(var/i = 1 to ammo_used_per_firing) sleep(1) - for(var/j = 1 to 2) //rather than halving the sleep, were doubling the bullets shot "bang" + for(var/j in 1 to 2) //rather than halving the sleep, were doubling the bullets shot "bang" var/turf/impact_tile = pick(turf_list) var/datum/cause_data/cause_data = create_cause_data(initial(name), source_mob) impact_tile.ex_act(EXPLOSION_THRESHOLD_VLOW, pick(GLOB.alldirs), cause_data)