From 865beac7fb1445fc43deb8cc304ce20416938d7b Mon Sep 17 00:00:00 2001 From: DeltaNedas Date: Sat, 31 Oct 2020 15:35:45 +0000 Subject: [PATCH] fix modded bullets --- core/src/mindustry/entities/bullet/BulletType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/bullet/BulletType.java b/core/src/mindustry/entities/bullet/BulletType.java index 189f984293..36b3893245 100644 --- a/core/src/mindustry/entities/bullet/BulletType.java +++ b/core/src/mindustry/entities/bullet/BulletType.java @@ -117,7 +117,7 @@ public abstract class BulletType extends Content{ public float lightningCone = 360f; public float lightningAngle = 0f; /** The bullet created at lightning points. */ - public BulletType lightningType; + public @Nullable BulletType lightningType = null; public float weaveScale = 1f; public float weaveMag = -1f;