Remove debug message

This commit is contained in:
Jimmy 2021-05-19 17:44:20 +12:00
parent 064321ffd2
commit b0c0d211f4
1 changed files with 0 additions and 1 deletions

View File

@ -37,7 +37,6 @@ public class GoldPan implements Runnable {
int adddelaymax = plugin.getConfig().getInt("pans."+pan+".items."+item+".delay.add.max");
int removedelaymin = plugin.getConfig().getInt("pans."+pan+".items."+item+".delay.remove.min");
int removedelaymax = plugin.getConfig().getInt("pans."+pan+".items."+item+".delay.remove.max");
plugin.getLogger().log(Level.INFO, item+String.valueOf(chance));
this.items.add(new PanItem(item, chance, adddelaymin, adddelaymax,
removedelaymin, removedelaymax));