From 0ee8c07904e5388daf94d57c1d284fe418a08842 Mon Sep 17 00:00:00 2001 From: Ribbons0121R121 Date: Mon, 14 Feb 2022 22:06:44 -0600 Subject: [PATCH] Change base grab to be like other turret types (#6577) because why was it like this to begin with --- .../world/blocks/defense/turrets/TractorBeamTurret.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java b/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java index f7a3efa017..26a973fbb6 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/TractorBeamTurret.java @@ -35,7 +35,7 @@ public class TractorBeamTurret extends BaseTurret{ public Sound shootSound = Sounds.tractorbeam; public float shootSoundVolume = 0.9f; - public @Load("block-@size") TextureRegion baseRegion; + public @Load(value = "@-base", fallback = "block-@size") TextureRegion baseRegion; public @Load("@-laser") TextureRegion laser; public @Load(value = "@-laser-start", fallback = "@-laser-end") TextureRegion laserStart; public @Load("@-laser-end") TextureRegion laserEnd;