Skip to content

Commit

Permalink
wip: remove system out
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Nov 13, 2024
1 parent 70a94e7 commit c557b2a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public void incomingMessage(PlayerContainer player, String channel, byte[] messa
switch (messageType) {
case ProxyMessages.SERVER_DESTI -> {
var serverDestiPacket = ServerDestiPacket.decode(buffer);
System.out.println("Server desti packet: " + serverDestiPacket.getDestination() + " " + player.getName());
this.destinationServices.teleportToDestination(serverDestiPacket.getDestination(), player);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public void onDisable() {
}

public void onServerConnect(ProxyServerContainer server, ProxyPlayerContainer player) {
System.out.println("Server connect");
if(this.playerJoinMap.containsKey(player.getUUID())) {
var joinData = this.playerJoinMap.get(player.getUUID());
if(joinData.isExpired()) return;
Expand Down

0 comments on commit c557b2a

Please sign in to comment.