Merge pull request #657 from KernelFreeze/master

Fixing item count on 1.11, where size <= 0. (#553)
This commit is contained in:
Myles 2017-05-10 20:52:22 +01:00 committed by GitHub
commit 255a4d516e

View File

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