refactor: make commandsPer* public in CorePlugin (tryna debug something)

This commit is contained in:
ChomeNS
2025-04-18 14:43:57 +07:00
parent d639fa7f6b
commit 2e79c7599f
2 changed files with 3 additions and 3 deletions

View File

@@ -55,8 +55,8 @@ public class CorePlugin implements Listener {
public final Queue<String> pendingCommands = new ConcurrentLinkedQueue<>();
private final AtomicInteger commandsPerTick = new AtomicInteger(0);
private final AtomicInteger commandsPerSecond = new AtomicInteger(0);
public final AtomicInteger commandsPerTick = new AtomicInteger(0);
public final AtomicInteger commandsPerSecond = new AtomicInteger(0);
private final AtomicInteger positionChangesPerSecond = new AtomicInteger(0);