Comment out debug code

This commit is contained in:
BONNe 2019-09-13 12:26:02 +03:00 committed by GitHub
parent ba71985231
commit ad225b0dfb
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) @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onBlock(BlockSpreadEvent e) { public void onBlock(BlockSpreadEvent e) {
Bukkit.getLogger().info(e.getEventName()); //Bukkit.getLogger().info(e.getEventName());
process(e.getBlock(), true); process(e.getBlock(), true);
} }
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true) @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onBlock(EntityBlockFormEvent e) { public void onBlock(EntityBlockFormEvent e) {
Bukkit.getLogger().info(e.getEventName()); //Bukkit.getLogger().info(e.getEventName());
process(e.getBlock(), true); process(e.getBlock(), true);
} }