Forgot return

This commit is contained in:
KennyTV 2019-04-27 19:01:45 +02:00
parent d76e70b1f7
commit 41b22e8951
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class HandItemCache extends BukkitRunnable {
}
public static Item convert(ItemStack itemInHand) {
if (itemInHand == null) new Item((short) 0, (byte) 0, (short) 0, null);
if (itemInHand == null) return new Item((short) 0, (byte) 0, (short) 0, null);
return new Item((short) itemInHand.getTypeId(), (byte) itemInHand.getAmount(), itemInHand.getDurability(), null);
}
}