From 380c9ab11302743a2a03184464e3062f2ffcc10e Mon Sep 17 00:00:00 2001 From: MEEP of Faith <54301439+MEEPofFaith@users.noreply.github.com> Date: Tue, 1 Dec 2020 22:17:32 -0800 Subject: [PATCH] Why is this protected in the first place? --- core/src/mindustry/entities/bullet/LaserBoltBulletType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/bullet/LaserBoltBulletType.java b/core/src/mindustry/entities/bullet/LaserBoltBulletType.java index bd1332443f..bebb2814e8 100644 --- a/core/src/mindustry/entities/bullet/LaserBoltBulletType.java +++ b/core/src/mindustry/entities/bullet/LaserBoltBulletType.java @@ -6,7 +6,7 @@ import mindustry.gen.*; import mindustry.content.*; public class LaserBoltBulletType extends BasicBulletType{ - protected float height = 7f, width = 2f; + public float width = 2f, height = 7f; public LaserBoltBulletType(float speed, float damage){ super(speed, damage);