Add missing inventory properties

(cherry picked from commit 600429e7d6)
This commit is contained in:
Mallory Hayr 2024-01-14 12:54:44 -08:00 committed by Matt Worzala
parent 35f9489280
commit b5dc662262
1 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,13 @@ public enum InventoryProperty {
ANVIL_REPAIR_COST((short) 0),
BREWING_STAND_BREW_TIME((short) 0),
BREWING_STAND_FUEL_TIME((short) 1);
BREWING_STAND_FUEL_TIME((short) 1),
STONECUTTER_SELECTED_RECIPE((short) 0),
LOOM_SELECTED_PATTERN((short) 0),
LECTERN_PAGE_NUMBER((short) 0);
private final short property;