From 85077fbb9c89590dca792b1c2b6d0b88e5705e8e Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 12 Jan 2023 11:32:57 -0500 Subject: [PATCH] Force canGameOver in campaign --- core/src/mindustry/core/Logic.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/mindustry/core/Logic.java b/core/src/mindustry/core/Logic.java index d35071d55b..ac9c33b986 100644 --- a/core/src/mindustry/core/Logic.java +++ b/core/src/mindustry/core/Logic.java @@ -70,6 +70,9 @@ public class Logic implements ApplicationListener{ if(state.isCampaign()){ state.rules.coreIncinerates = true; + //TODO why is this even a thing? + state.rules.canGameOver = true; + //fresh map has no sector info if(!e.isMap){ SectorInfo info = state.rules.sector.info;