diff --git a/core/src/mindustry/world/blocks/production/BeamDrill.java b/core/src/mindustry/world/blocks/production/BeamDrill.java index 834cc644b3..6fc0cfa59e 100644 --- a/core/src/mindustry/world/blocks/production/BeamDrill.java +++ b/core/src/mindustry/world/blocks/production/BeamDrill.java @@ -9,6 +9,7 @@ import arc.util.*; import arc.util.io.*; import mindustry.annotations.Annotations.*; +import mindustry.core.*; import mindustry.entities.units.*; import mindustry.game.*; import mindustry.gen.*; @@ -273,7 +274,7 @@ public void draw(){ Draw.rect(block.region, x, y); Draw.rect(topRegion, x, y, rotdeg()); - if(isPayload()) return; + if(isPayload() || Mathf.zero(Renderer.laserOpacity)) return; float opacity = (float) Core.settings.getInt("beamdrillopacity") / 100f;