mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix llama carpet decoration offset
This commit is contained in:
parent
282800cefc
commit
e4e35d3c0b
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ public class ItemRegistry {
|
||||||
BOATS.add(entry.getValue().get("bedrock_id").intValue());
|
BOATS.add(entry.getValue().get("bedrock_id").intValue());
|
||||||
} else if (entry.getKey().contains("bucket") && !entry.getKey().contains("milk")) {
|
} else if (entry.getKey().contains("bucket") && !entry.getKey().contains("milk")) {
|
||||||
BUCKETS.add(entry.getValue().get("bedrock_id").intValue());
|
BUCKETS.add(entry.getValue().get("bedrock_id").intValue());
|
||||||
} else if (entry.getKey().contains("_carpet")) {
|
} else if (entry.getKey().contains("_carpet") && !entry.getKey().contains("moss")) {
|
||||||
// This should be the numerical order Java sends as an integer value for llamas
|
// This should be the numerical order Java sends as an integer value for llamas
|
||||||
CARPETS.add(ItemData.builder()
|
CARPETS.add(ItemData.builder()
|
||||||
.id(itemEntry.getBedrockId())
|
.id(itemEntry.getBedrockId())
|
||||||
|
|
Loading…
Reference in a new issue