3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-08 20:43:04 +02:00

Remove unnecessary is_block null check

Dieser Commit ist enthalten in:
AJ Ferguson 2021-01-04 15:16:21 -09:00
Ursprung 57e176efd6
Commit ff69752d2c

Datei anzeigen

@ -156,7 +156,7 @@ public class ItemRegistry {
entry.getValue().get("bedrock_data").intValue(),
entry.getValue().get("tool_type").textValue(),
entry.getValue().get("tool_tier").textValue(),
entry.getValue().get("is_block") != null && entry.getValue().get("is_block").booleanValue(),
entry.getValue().get("is_block").booleanValue(),
stackSize));
} else {
ITEM_ENTRIES.put(itemIndex, new ToolItemEntry(
@ -170,7 +170,7 @@ public class ItemRegistry {
ITEM_ENTRIES.put(itemIndex, new ItemEntry(
entry.getKey(), bedrockIdentifier, itemIndex, bedrockId,
entry.getValue().get("bedrock_data").intValue(),
entry.getValue().get("is_block") != null && entry.getValue().get("is_block").booleanValue(),
entry.getValue().get("is_block").booleanValue(),
stackSize));
}
switch (entry.getKey()) {