Hoppers will now disable when hit with redstone power.

This commit is contained in:
Brianna O'Keefe 2018-11-23 13:16:41 -05:00
parent aa918c6401
commit 739521efdd

View File

@ -73,6 +73,8 @@ public class HopHandler {
}
Block block = location.getBlock();
if (block.isBlockPowered()) continue;
if (block == null || block.getType() != Material.HOPPER) {
instance.getHopperManager().removeHopper(location);
continue;