diff --git a/src/item/enchantment/Enchantment.php b/src/item/enchantment/Enchantment.php index d93c475de..80e791605 100644 --- a/src/item/enchantment/Enchantment.php +++ b/src/item/enchantment/Enchantment.php @@ -66,6 +66,9 @@ class Enchantment{ public const RIPTIDE = 30; public const LOYALTY = 31; public const CHANNELING = 32; + public const MULTISHOT = 33; + public const PIERCING = 34; + public const QUICK_CHARGE = 35; public const RARITY_COMMON = 10; public const RARITY_UNCOMMON = 5; diff --git a/src/network/mcpe/protocol/types/inventory/WindowTypes.php b/src/network/mcpe/protocol/types/inventory/WindowTypes.php index 33aeb9c57..e1b5e3d8b 100644 --- a/src/network/mcpe/protocol/types/inventory/WindowTypes.php +++ b/src/network/mcpe/protocol/types/inventory/WindowTypes.php @@ -55,9 +55,12 @@ final class WindowTypes{ public const ELEMENT_CONSTRUCTOR = 21; public const MATERIAL_REDUCER = 22; public const LAB_TABLE = 23; - + public const LOOM = 24; + public const LECTERN = 25; + public const GRINDSTONE = 26; public const BLAST_FURNACE = 27; public const SMOKER = 28; public const STONECUTTER = 29; + public const CARTOGRAPHY = 30; }