Fix droppers not spawning items in world (#5559)

This commit is contained in:
Ben Staddon 2019-02-25 05:47:37 +00:00 committed by tterrag
parent 2a4e05c982
commit af717ad788

View file

@ -109,7 +109,7 @@ public class VanillaInventoryCodeHooks
dropper.setInventorySlotContents(slot, remainder); dropper.setInventorySlotContents(slot, remainder);
return false; return false;
}) })
.orElse(false); .orElse(true);
} }
/** /**