Proper item multiplying.

This commit is contained in:
Brianna 2019-11-07 15:56:52 -05:00
parent 7b44b31317
commit 23b653b924
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ public class DropUtils {
ItemStack droppedItem = drop.getItemStack();
if (droppedItem != null) {
droppedItem = droppedItem.clone();
boolean success = false;
for (ItemStack item : items) {
if (item.getType() != droppedItem.getType()