From 600429e7d6965a3f27d15f7af7dc9128c02ecaa3 Mon Sep 17 00:00:00 2001 From: Mallory Hayr Date: Sun, 14 Jan 2024 12:54:44 -0800 Subject: [PATCH] Add missing inventory properties --- .../net/minestom/server/inventory/InventoryProperty.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/net/minestom/server/inventory/InventoryProperty.java b/src/main/java/net/minestom/server/inventory/InventoryProperty.java index 9e1ef9639..37f052741 100644 --- a/src/main/java/net/minestom/server/inventory/InventoryProperty.java +++ b/src/main/java/net/minestom/server/inventory/InventoryProperty.java @@ -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;