From 8343897a72e5d4a485ad55c8cabef5d24a4246ae Mon Sep 17 00:00:00 2001 From: MEEPofFaith <54301439+MEEPofFaith@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:28:15 -0700 Subject: [PATCH] Merge true by default Make percentage symbol inherit the color as well --- core/src/mindustry/world/meta/StatValues.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/meta/StatValues.java b/core/src/mindustry/world/meta/StatValues.java index 6898799b0eb..dfcc7353ba7 100644 --- a/core/src/mindustry/world/meta/StatValues.java +++ b/core/src/mindustry/world/meta/StatValues.java @@ -83,7 +83,7 @@ public static StatValue percentModifier(float value, StatUnit unit, boolean merg } public static StatValue percentModifier(float value, StatUnit unit){ - return percentModifier(value, unit, false); + return percentModifier(value, unit, true); } public static StatValue liquid(Liquid liquid, float amount, boolean perSecond){