From 785bd44dbe6c8adf4b88050e5c973fc2a1b27e23 Mon Sep 17 00:00:00 2001 From: "Matthew, Maya, or MEEP" <54301439+MEEPofFaith@users.noreply.github.com> Date: Thu, 17 Feb 2022 14:13:20 -0800 Subject: [PATCH] Change base grab to be like other turret types (#6584) because why was it like this to begin with --- .../world/blocks/defense/turrets/PointDefenseTurret.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/defense/turrets/PointDefenseTurret.java b/core/src/mindustry/world/blocks/defense/turrets/PointDefenseTurret.java index f540fb6864..fedf3315a0 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/PointDefenseTurret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/PointDefenseTurret.java @@ -18,7 +18,7 @@ public class PointDefenseTurret extends ReloadTurret{ public final int timerTarget = timers++; public float retargetTime = 5f; - public @Load("block-@size") TextureRegion baseRegion; + public @Load(value = "@-base", fallback = "block-@size") TextureRegion baseRegion; public Color color = Color.white; public Effect beamEffect = Fx.pointBeam;