mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Remove goat horn from creative menu; use proper sculk sensor item
This commit is contained in:
parent
7972f089d9
commit
f03a2dd317
2 changed files with 7 additions and 4 deletions
|
@ -235,10 +235,13 @@ public class ItemRegistryPopulator {
|
|||
Set<String> javaOnlyItems = new ObjectOpenHashSet<>();
|
||||
Collections.addAll(javaOnlyItems, "minecraft:spectral_arrow", "minecraft:debug_stick",
|
||||
"minecraft:knowledge_book", "minecraft:tipped_arrow", "minecraft:trader_llama_spawn_egg",
|
||||
"minecraft:bundle", "minecraft:sculk_sensor");
|
||||
"minecraft:bundle");
|
||||
if (!usingFurnaceMinecart) {
|
||||
javaOnlyItems.add("minecraft:furnace_minecart");
|
||||
}
|
||||
if (!GeyserConnector.getInstance().getConfig().isExtendedWorldHeight()) {
|
||||
javaOnlyItems.add("minecraft:sculk_sensor");
|
||||
}
|
||||
// Java-only items for this version
|
||||
javaOnlyItems.addAll(palette.getValue().getAdditionalTranslatedItems().keySet());
|
||||
|
||||
|
@ -251,6 +254,9 @@ public class ItemRegistryPopulator {
|
|||
// This items has a mapping specifically for this version of the game
|
||||
mappingItem = entry.getValue();
|
||||
}
|
||||
if (entry.getKey().equals("minecraft:sculk_sensor") && GeyserConnector.getInstance().getConfig().isExtendedWorldHeight()) {
|
||||
mappingItem.setBedrockIdentifier("minecraft:sculk_sensor");
|
||||
}
|
||||
|
||||
if (usingFurnaceMinecart && entry.getKey().equals("minecraft:furnace_minecart")) {
|
||||
javaFurnaceMinecartId = itemIndex;
|
||||
|
|
|
@ -3137,9 +3137,6 @@
|
|||
{
|
||||
"id" : "minecraft:saddle"
|
||||
},
|
||||
{
|
||||
"id" : "minecraft:goat_horn"
|
||||
},
|
||||
{
|
||||
"id" : "minecraft:leather_horse_armor"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue