diff --git a/core/src/mindustry/world/blocks/defense/turrets/Turret.java b/core/src/mindustry/world/blocks/defense/turrets/Turret.java index 7659d6102c..0baea25f93 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/Turret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/Turret.java @@ -408,7 +408,7 @@ public class Turret extends ReloadTurret{ if(hasAmmo()){ if(Float.isNaN(reloadCounter)) reloadCounter = 0; - if(timer(timerTarget, target == null ? newTargetInterval : targetInterval)){ + if(timer(timerTarget, target != null ? newTargetInterval : targetInterval)){ findTarget(); }