From 342ec4adcebedc1e43ce6aa2d51a1f66e2f6a653 Mon Sep 17 00:00:00 2001 From: Elixias <61173114+LixieWulf@users.noreply.github.com> Date: Sat, 27 Jan 2024 07:22:28 -0700 Subject: [PATCH] Unprotect dumpTime (#9493) --- core/src/mindustry/world/Block.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index 31d98e1efc..05f064cbaf 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -382,7 +382,7 @@ public class Block extends UnlockableContent implements Senseable{ /** Dump timer ID.*/ protected final int timerDump = timers++; /** How often to try dumping items in ticks, e.g. 5 = 12 times/sec*/ - protected final int dumpTime = 5; + public int dumpTime = 5; public Block(String name){ super(name);