add log when plr switch zone
All checks were successful
/ Auto-Build-App (push) Successful in 1m19s

This commit is contained in:
pietru 2025-02-23 22:53:33 +01:00
parent 4071b5fc21
commit 066bae3d90

View file

@ -55,6 +55,12 @@ public class TokenSwitchZone implements BaseToken {
old.removePlayer(player); old.removePlayer(player);
} }
System.out.println("--------------------------");
System.out.println("Player "+player.getUsername());
System.out.println("Old "+old.zoneId);
System.out.println("New "+zone.zoneId);
System.out.println("--------------------------");
return true; return true;
} }
} }