From f2543bdbf7c7f380c5f8951fbe2896eae17020aa Mon Sep 17 00:00:00 2001 From: KnosTx <135945845+KnosTx@users.noreply.github.com> Date: Mon, 9 Sep 2024 20:38:20 +0700 Subject: [PATCH] Mace Implementation --- src/item/VanillaItems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/item/VanillaItems.php b/src/item/VanillaItems.php index 8943d7e3c2..307e276167 100644 --- a/src/item/VanillaItems.php +++ b/src/item/VanillaItems.php @@ -634,7 +634,7 @@ private static function registerTierToolItems() : void{ self::register("netherite_sword", new Sword(new IID(Ids::NETHERITE_SWORD), "Netherite Sword", ToolTier::NETHERITE, [EnchantmentTags::SWORD])); self::register("stone_sword", new Sword(new IID(Ids::STONE_SWORD), "Stone Sword", ToolTier::STONE, [EnchantmentTags::SWORD])); self::register("wooden_sword", new Sword(new IID(Ids::WOODEN_SWORD), "Wooden Sword", ToolTier::WOOD, [EnchantmentTags::SWORD])); - self::register("mace", new Mace (new IID(Ids::MACE), "Mace", ToolTier::MACE, [EnchantmentTags::MACE])); + self::register("mace", new Mace(new IID(Ids::MACE), "Mace", [EnchantmentTags::SWORD])); } private static function registerArmorItems() : void{