diff --git a/core/src/mindustry/world/blocks/defense/turrets/Turret.java b/core/src/mindustry/world/blocks/defense/turrets/Turret.java index 58abb26b12..1a394fe074 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/Turret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/Turret.java @@ -65,7 +65,7 @@ public abstract class Turret extends ReloadTurret{ protected Vec2 tr = new Vec2(); protected Vec2 tr2 = new Vec2(); - public @Load("block-@size") TextureRegion baseRegion; + public @Load("@-base", fallback = "block-@size") TextureRegion baseRegion; public @Load("@-heat") TextureRegion heatRegion; public Cons drawer = tile -> Draw.rect(region, tile.x + tr2.x, tile.y + tr2.y, tile.rotation - 90);