remove logging

This commit is contained in:
EmmaKnijn 2024-08-01 15:46:04 +02:00
parent 2bdcac64f5
commit 1c681f8e17

View file

@ -63,7 +63,7 @@ public class Ctserver implements ModInitializer {
if (tickCounter >= 20) { if (tickCounter >= 20) {
int playerCount = minecraftServer.getCurrentPlayerCount(); int playerCount = minecraftServer.getCurrentPlayerCount();
LOGGER.info(String.valueOf(playerCount)); //LOGGER.info(String.valueOf(playerCount));
double afterTicks = Instant.now().toEpochMilli(); double afterTicks = Instant.now().toEpochMilli();
double timeBetween = afterTicks - zeroTicks; double timeBetween = afterTicks - zeroTicks;
double mspt = (timeBetween / 20) ; double mspt = (timeBetween / 20) ;