diff --git a/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java b/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java index 162cb1cc70..42e33dc2e3 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java @@ -97,7 +97,7 @@ public class TractorBeamTurret extends BaseTurret{ any = false; //look at target - if(target != null && target.within(this, range) && target.team() != team && target.type.flying && efficiency() > 0.02f){ + if(target != null && target.within(this, range) && target.team() != team && target.checkTarget(targetAir, targetGround) && efficiency() > 0.02f){ if(!headless){ control.sound.loop(shootSound, this, shootSoundVolume); }