Merge pull request #347 from DoctorMacc/item-fix

Fix some creative items being unobtainable
This commit is contained in:
Redned 2020-04-15 14:31:57 -05:00 committed by GitHub
commit 58331993ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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;