mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Remap Wooden Pressure Plates, Snow, Smooth Stone Slabs and Signs.
This commit is contained in:
parent
91a80f7dee
commit
8bee5c005c
1 changed files with 19 additions and 1 deletions
|
|
@ -89,6 +89,24 @@ public class Remapper {
|
|||
identifier = MINECRAFT + "grass";
|
||||
}
|
||||
|
||||
|
||||
if (bedrockItem.getIdentifier().replace(MINECRAFT, "").equalsIgnoreCase("oak_sign")) {
|
||||
identifier = MINECRAFT + "wall_sign";
|
||||
}
|
||||
|
||||
if (bedrockItem.getIdentifier().replace(MINECRAFT, "").equalsIgnoreCase("oak_pressure_plate")) {
|
||||
identifier = MINECRAFT + "wooden_pressure_plate";
|
||||
}
|
||||
|
||||
if (bedrockItem.getIdentifier().replace(MINECRAFT, "").equalsIgnoreCase("smooth_stone_slab")) {
|
||||
identifier = MINECRAFT + "stone_slab";
|
||||
}
|
||||
|
||||
if (bedrockItem.getIdentifier().replace(MINECRAFT, "").equalsIgnoreCase("snow")) {
|
||||
identifier = MINECRAFT + "snow_layer";
|
||||
}
|
||||
|
||||
|
||||
// Dirt remapping
|
||||
if (bedrockItem.getIdentifier().replace(MINECRAFT, "").equalsIgnoreCase("dirt")) {
|
||||
if (bedrockItem.getData() == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue