!Removed debug message

This commit is contained in:
Indyuce 2020-04-06 20:22:47 +02:00
parent e2967de8a6
commit 939ec8811c

View File

@ -4,7 +4,6 @@ import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.logging.Level;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
@ -62,16 +61,6 @@ public class MMOItemsCommand implements CommandExecutor {
// ==================================================================================================================================
if (args.length < 1) {
for (ItemStat stat : MMOItems.plugin.getStats().getAll()) {
String id = stat.getId();
String path = stat.getPath().replace("-", "_").toUpperCase();
if (!id.equals(path))
MMOItems.plugin.getLogger().log(Level.WARNING, stat.getName()+": " + path + " -> " + id);
}
new PluginHelp(sender).open(1);
return true;
}