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
1 changed files with 1 additions and 1 deletions

View File

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