3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-30 19:08:03 +02:00
Dieser Commit ist enthalten in:
KennyTV 2019-04-27 19:01:45 +02:00
Ursprung d76e70b1f7
Commit 41b22e8951

Datei anzeigen

@ -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);
}
}