From 19b4f871c273965bb30bcafef89659db497044d2 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 8 Oct 2023 13:00:45 -0400 Subject: [PATCH] ShootSummon empty constructor --- core/src/mindustry/entities/pattern/ShootSummon.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/mindustry/entities/pattern/ShootSummon.java b/core/src/mindustry/entities/pattern/ShootSummon.java index c57bd8936d..d7ed625b0e 100644 --- a/core/src/mindustry/entities/pattern/ShootSummon.java +++ b/core/src/mindustry/entities/pattern/ShootSummon.java @@ -13,6 +13,9 @@ public class ShootSummon extends ShootPattern{ this.spread = spread; } + public ShootSummon(){ + } + @Override public void shoot(int totalShots, BulletHandler handler, @Nullable Runnable barrelIncrementer){ for(int i = 0; i < shots; i++){