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

This commit is contained in:
Chayapak 2025-04-18 14:43:57 +07:00
parent d639fa7f6b
commit 2e79c7599f
Signed by: ChomeNS
SSH key fingerprint: SHA256:0YoxhdyXsgbc0nfeB2N6FYE60mxMU7DS4uCUMaw2mvA
2 changed files with 3 additions and 3 deletions
build-number.txt
src/main/java/me/chayapak1/chomens_bot/plugins

View file

@ -1 +1 @@
2855
2861

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);