3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-11-20 06:50:09 +01:00

null is probably solid! Like dirt!

Dieser Commit ist enthalten in:
EOT3000 2019-09-13 22:53:16 -04:00
Ursprung 1bf4e5289a
Commit 26a043fd0a

Datei anzeigen

@ -63,9 +63,9 @@ public class ItemTranslator {
} }
public ItemData translateToBedrock(ItemStack stack) { public ItemData translateToBedrock(ItemStack stack) {
// Most likely air if null // Most likely dirt if null
if (stack == null) { if (stack == null) {
return ItemData.AIR; return ItemData.of(3, (short)0, 0);
} }
BedrockItem bedrockItem = getBedrockItem(stack); BedrockItem bedrockItem = getBedrockItem(stack);