mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
fix logs and fences in 1.19.80+ (#3698)
This commit is contained in:
parent
56958f8fbd
commit
321f98c75d
1 changed files with 12 additions and 0 deletions
|
@ -213,6 +213,18 @@ public class ItemRegistryPopulator {
|
||||||
} else {
|
} else {
|
||||||
bedrockIdentifier = mappingItem.getBedrockIdentifier();
|
bedrockIdentifier = mappingItem.getBedrockIdentifier();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//1.19.80+
|
||||||
|
if (palette.getValue().protocolVersion >= Bedrock_v582.CODEC.getProtocolVersion()) {
|
||||||
|
if (mappingItem.getBedrockIdentifier().equals("minecraft:log") ||
|
||||||
|
mappingItem.getBedrockIdentifier().equals("minecraft:log2") ||
|
||||||
|
mappingItem.getBedrockIdentifier().equals("minecraft:fence")) {
|
||||||
|
bedrockIdentifier = javaItem.javaIdentifier();
|
||||||
|
} else {
|
||||||
|
bedrockIdentifier = mappingItem.getBedrockIdentifier();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ItemDefinition definition = definitions.get(bedrockIdentifier);
|
ItemDefinition definition = definitions.get(bedrockIdentifier);
|
||||||
if (definition == null) {
|
if (definition == null) {
|
||||||
throw new RuntimeException("Missing Bedrock ItemDefinition in mappings: " + bedrockIdentifier);
|
throw new RuntimeException("Missing Bedrock ItemDefinition in mappings: " + bedrockIdentifier);
|
||||||
|
|
Loading…
Reference in a new issue