Item count on 1.11.

This commit is contained in:
KernelFreeze 2017-05-09 23:32:32 -05:00
parent 18c706ab8a
commit 1d5d0012e6

View File

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