From 828464a449b1e432e80f0d96a2cdbdac89b30e7a Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 29 Oct 2021 20:16:37 -0400 Subject: [PATCH] Why was this false --- core/src/mindustry/entities/Effect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/Effect.java b/core/src/mindustry/entities/Effect.java index 4a8961d8f4..aa32ed60db 100644 --- a/core/src/mindustry/entities/Effect.java +++ b/core/src/mindustry/entities/Effect.java @@ -35,7 +35,7 @@ public class Effect{ /** Amount added to rotation */ public float baseRotation; /** If true, parent unit is data are followed. */ - public boolean followParent; + public boolean followParent = true; /** If this and followParent are true, the effect will offset and rotate with the parent's rotation. */ public boolean rotWithParent;