Fixed issue with auto butcher.

This commit is contained in:
Brianna 2019-10-16 23:11:25 -04:00
parent f9a95a920a
commit 286342c57f

View File

@ -47,7 +47,7 @@ public class ModuleAutoButcher extends Module {
for (LivingEntity entity : entities) {
int stackSize = EntityStackerManager.getSize(entity);
if (stackSize == 0) stackSize = 1;
count = stackSize;
count += stackSize;
}
if (count <= 2 || !farm.willFit(new ItemStack(Material.STONE))) return;