From c4da670a7c2cc52eeb58a17402c7e5872a29a888 Mon Sep 17 00:00:00 2001 From: MEEP of Faith <54301439+MEEPofFaith@users.noreply.github.com> Date: Mon, 8 Mar 2021 16:14:04 -0800 Subject: [PATCH] do not the multi charge (#4905) --- core/src/mindustry/world/blocks/defense/turrets/Turret.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/defense/turrets/Turret.java b/core/src/mindustry/world/blocks/defense/turrets/Turret.java index 645264b459..cf793ad64d 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/Turret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/Turret.java @@ -353,7 +353,7 @@ public class Turret extends ReloadTurret{ } protected void updateShooting(){ - if(reload >= reloadTime){ + if(reload >= reloadTime && !charging){ BulletType type = peekAmmo(); shoot(type);