diff --git a/ChallengeUtils/src/main/java/de/fanta/challengeutils/FileUtils.java b/ChallengeUtils/src/main/java/de/fanta/challengeutils/FileUtils.java index bf374ed..2f3845c 100644 --- a/ChallengeUtils/src/main/java/de/fanta/challengeutils/FileUtils.java +++ b/ChallengeUtils/src/main/java/de/fanta/challengeutils/FileUtils.java @@ -29,8 +29,6 @@ if (!challengeFolder.isDirectory()) { return null; } - - System.out.println(challengeFolder.getAbsolutePath()); return challengeFolder; } diff --git a/Lobby/src/main/java/de/fanta/lobby/Lobby.java b/Lobby/src/main/java/de/fanta/lobby/Lobby.java index 5384d22..35ee732 100644 --- a/Lobby/src/main/java/de/fanta/lobby/Lobby.java +++ b/Lobby/src/main/java/de/fanta/lobby/Lobby.java @@ -348,7 +348,6 @@ } public void updatePiglinBehaviour(String serverName) { - getLogger().info("Update Server: " + serverName); Piglin piglin = getPiglinForServerName(serverName); JoinEntityData data = entityData.get(serverName); diff --git a/Lobby/src/main/java/de/fanta/lobby/Server.java b/Lobby/src/main/java/de/fanta/lobby/Server.java index 59481d7..49a5674 100644 --- a/Lobby/src/main/java/de/fanta/lobby/Server.java +++ b/Lobby/src/main/java/de/fanta/lobby/Server.java @@ -187,7 +187,6 @@ if (tempServerType == null || tempServerType.equals("CHALLENGE")) { serverConfig.set("servertype", "CHALLENGE_LOAD"); serverConfig.save(serverConfigFile); - Lobby.getPlugin().getLogger().info(serverConfigFile.getAbsolutePath()); } if (tempServerType != null && serverConfig.getString("servertype").equals("ADVENTURE")) { diff --git a/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengeLoadGUI.java b/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengeLoadGUI.java index 5b4c2a4..e14f0e6 100644 --- a/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengeLoadGUI.java +++ b/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengeLoadGUI.java @@ -54,7 +54,6 @@ public ChallengeLoadGUI(Player player, PlayerInfoEntry infoEntry) { super(player, Bukkit.createInventory(player, WINDOW_SIZE, Lobby.getPlugin().getCHALLENGEGUIPREFIX().append(Component.text(" >> Map laden").append(Component.text(player.getUniqueId().equals(infoEntry.getCachedPlayer().getUniqueId()) ? "" : " " + infoEntry.getCachedPlayer().getName()))))); CachedPlayer savePlayer = infoEntry.getCachedPlayer(); - System.out.println(infoEntry.getCachedPlayer().getName()); isOwnGUI = player.getUniqueId().equals(savePlayer.getUniqueId()); savePlayerList.put(player.getUniqueId(), savePlayer.getUniqueId()); this.playerInfoEntry = infoEntry; diff --git a/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengePlayerListGUI.java b/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengePlayerListGUI.java index 75c2f47..f14cc72 100644 --- a/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengePlayerListGUI.java +++ b/Lobby/src/main/java/de/fanta/lobby/loadgui/ChallengePlayerListGUI.java @@ -84,15 +84,12 @@ } else if (player.hasPermission("lobby.load.other")) { Set playerList = plugin.getSaveAccessConfig().getKeys(false); for (String name : playerList) { - plugin.getLogger().info("Name: " + name); ConfigurationSection playerSection = plugin.getSaveAccessConfig().getConfigurationSection(name); if (playerSection != null) { Set slots = playerSection.getKeys(false); for (String slot : slots) { - plugin.getLogger().info("Slot: " + slot); List acceessList = playerSection.getStringList(slot); for (String accessPlayer : acceessList) { - plugin.getLogger().info("accessPlayer: " + accessPlayer); UUID uuid = UUID.fromString(accessPlayer); if (player.getUniqueId().equals(uuid)) { CachedPlayer cachedPlayer = plugin.getPlayerUUIDCache().getPlayer(UUID.fromString(name));