Fixing item count on 1.11, where size <= 0. Fixes #553

This commit is contained in:
KernelFreeze 2017-05-09 23:19:23 -05:00
parent efa6e8ec31
commit 18c706ab8a

View File

@ -97,6 +97,7 @@ public class ItemRewriter {
}
}
}
if (stack.getAmount() <= 0) stack.setAmount((byte) 1);
}
public static void toServer(Item item) {