From ccabe381d93fc9edcc4471ebd10b1f15323b2c08 Mon Sep 17 00:00:00 2001 From: Jason <131086642+JasonP01@users.noreply.github.com> Date: Sat, 13 Dec 2025 18:12:31 +0200 Subject: [PATCH] Enable core incineration by default (#11437) --- core/src/mindustry/game/Rules.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/game/Rules.java b/core/src/mindustry/game/Rules.java index 5656c695be..a268020da1 100644 --- a/core/src/mindustry/game/Rules.java +++ b/core/src/mindustry/game/Rules.java @@ -193,7 +193,7 @@ public class Rules{ /** Mission string displayed instead of wave/core counter. Null to disable. */ public @Nullable String mission; /** Whether cores incinerate items when full, just like in the campaign. */ - public boolean coreIncinerates = false; + public boolean coreIncinerates = true; /** If false, borders fade out into darkness. Only use with custom backgrounds!*/ public boolean borderDarkness = true; /** If true, the map play area is cropped based on the rectangle below. */