quick fix.

This commit is contained in:
Brianna 2019-04-15 21:54:51 -04:00
parent 97acdef9b8
commit 98ba629b89

View File

@ -136,13 +136,13 @@ public class HopHandler {
if (!whiteList.isEmpty()
&& whiteList.stream().noneMatch(itemStack -> itemStack.isSimilar(hopperContents[finalIncrement]))) {
doBlacklist(hopperState, hopper, hopperContents[i].clone(), amount, i);
hopperState.update();
block.getState().update();
continue main;
}
if (blackList.stream().noneMatch(itemStack -> itemStack.isSimilar(hopperContents[finalIncrement]))) {
if (addItem(hopperState, hopper, destinationInventory, destinationBlock, hopperContents[i], amount, i)) {
hopperState.update();
block.getState().update();
continue main;
}
}