From 2c035169980b974292799ed8cea3a0850e49814f Mon Sep 17 00:00:00 2001 From: MEEP of Faith Date: Sat, 24 Oct 2020 17:27:01 -0700 Subject: [PATCH] I thought this failed. I guess not.. --- 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 71d813eb0c..fc55a5fde1 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(value = "block-@", fallback = "block-@size") TextureRegion baseRegion; + public @Load(value = "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);