Temporarily commented out ItemStack returning in getItemStack in CustomID. This will be updated with 1.13+ item support later.

This commit is contained in:
David Berdik 2019-06-22 17:13:28 -04:00
parent 3dc7542a4c
commit ef8f0ac209

View File

@ -31,13 +31,13 @@ public class CustomID {
public ItemStack getItemStack() {
ItemStack item = null;
if (id != 0) {
/*if (id != 0) {
if (data > 0) {
item = new ItemStack(id, 1, (byte) data);
} else {
item = new ItemStack(id);
}
}
}*/
return item;
}