Fix error when braking vanilla hoppers

This commit is contained in:
ceze88 2023-09-04 19:59:02 +02:00
parent f53c5aae76
commit fda9e62467

View File

@ -126,7 +126,7 @@ public class BlockListeners implements Listener {
return;
}
if (Settings.ALLOW_NORMAL_HOPPERS.getBoolean() && !this.plugin.getHopperManager().isHopper(block.getLocation())) {
if (!this.plugin.getHopperManager().isHopper(block.getLocation())) {
return;
}