Fixed an issue causing breedable items to not store in chests.

This commit is contained in:
Brianna 2019-10-08 12:17:37 -04:00
parent 117dfdc128
commit 85738f3b91

View File

@ -213,7 +213,7 @@ public class EntityTask extends BukkitRunnable {
stack.setAmount(stack.getAmount() * (boostData == null ? 1 : boostData.getMultiplier()));
if (farm.willFit(stack)) return false;
if (!farm.willFit(stack)) return false;
farm.addItem(stack);
return true;
}