Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
Fix piston/sticky piston (among others) not being able to be retrieved in creative
Dieser Commit ist enthalten in:
Ursprung
1cb2e658e0
Commit
d7b8f08899
@ -118,6 +118,13 @@ public class ItemTranslator {
|
|||||||
return itemEntry;
|
return itemEntry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// If item find was unsuccessful first time, we try again while ignoring damage
|
||||||
|
// Fixes piston, sticky pistons, dispensers and droppers turning into air from creative inventory
|
||||||
|
for (ItemEntry itemEntry : Toolbox.ITEM_ENTRIES.values()) {
|
||||||
|
if (itemEntry.getBedrockId() == data.getId()) {
|
||||||
|
return itemEntry;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
GeyserConnector.getInstance().getLogger().debug("Missing mapping for bedrock item " + data.getId() + ":" + data.getDamage());
|
GeyserConnector.getInstance().getLogger().debug("Missing mapping for bedrock item " + data.getId() + ":" + data.getDamage());
|
||||||
return ItemEntry.AIR;
|
return ItemEntry.AIR;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren