From 6cd778783ea01a061add608751b48e277e894dc5 Mon Sep 17 00:00:00 2001 From: MEEPofFaith <54301439+MEEPofFaith@users.noreply.github.com> Date: Fri, 19 May 2023 07:53:06 -0700 Subject: [PATCH] Shift swarmer shoot barrels to match the chutes (#8624) Similar to how cyclone shoot barrels match the ends of each barrel. --- core/src/mindustry/content/Blocks.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 3f6dd01948..6ad0a5b3dd 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -3413,11 +3413,14 @@ public class Blocks{ lightningLength = 10; }} ); - - shoot = new ShootAlternate(){{ + + shoot = new ShootBarrel(){{ + barrels = new float[]{ + -4, -1.25f, 0, + 0, 0, 0, + 4, -1.25f, 0 + }; shots = 4; - barrels = 3; - spread = 3.5f; shotDelay = 5f; }};