From 931c03945d3bf82206f2cceac06fb071390ed52c Mon Sep 17 00:00:00 2001 From: BlackDeluxeCat <65377021+BlackDeluxeCat@users.noreply.github.com> Date: Tue, 16 Jan 2024 01:58:36 +0800 Subject: [PATCH] Further Fixed #7310 (#9456) --- core/src/mindustry/logic/LExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/logic/LExecutor.java b/core/src/mindustry/logic/LExecutor.java index b152bd1e5d..10cbdf07b3 100644 --- a/core/src/mindustry/logic/LExecutor.java +++ b/core/src/mindustry/logic/LExecutor.java @@ -62,7 +62,7 @@ public class LExecutor{ public boolean privileged = false; //yes, this is a minor memory leak, but it's probably not significant enough to matter - protected IntFloatMap unitTimeouts = new IntFloatMap(); + protected static IntFloatMap unitTimeouts = new IntFloatMap(); boolean timeoutDone(Unit unit, float delay){ return Time.time >= unitTimeouts.get(unit.id) + delay;