Merge pull request #46 from BONNe/patch-1

Comment out debug code
This commit is contained in:
tastybento 2019-09-13 16:07:36 -07:00 committed by GitHub
commit aab601ff9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -225,13 +225,13 @@ public class BlockLimitsListener implements Listener {
*/
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onBlock(BlockSpreadEvent e) {
Bukkit.getLogger().info(e.getEventName());
//Bukkit.getLogger().info(e.getEventName());
process(e.getBlock(), true);
}
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onBlock(EntityBlockFormEvent e) {
Bukkit.getLogger().info(e.getEventName());
//Bukkit.getLogger().info(e.getEventName());
process(e.getBlock(), true);
}