mirror of
https://github.com/songoda/EpicFarming.git
synced 2024-11-27 21:15:28 +01:00
Fixed an issue causing breedable items to not store in chests.
This commit is contained in:
parent
117dfdc128
commit
85738f3b91
@ -213,7 +213,7 @@ public class EntityTask extends BukkitRunnable {
|
|||||||
|
|
||||||
stack.setAmount(stack.getAmount() * (boostData == null ? 1 : boostData.getMultiplier()));
|
stack.setAmount(stack.getAmount() * (boostData == null ? 1 : boostData.getMultiplier()));
|
||||||
|
|
||||||
if (farm.willFit(stack)) return false;
|
if (!farm.willFit(stack)) return false;
|
||||||
farm.addItem(stack);
|
farm.addItem(stack);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user