From 33c0a38fa2daf924394a983abd920ba8342f43fd Mon Sep 17 00:00:00 2001 From: aericio <16523741+Aericio@users.noreply.github.com> Date: Thu, 28 Sep 2023 20:01:42 -1000 Subject: [PATCH] Fix component texture for enchant book --- .../PiggyCustomEnchants/items/PiggyEnchantedBookItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DaPigGuy/PiggyCustomEnchants/items/PiggyEnchantedBookItem.php b/src/DaPigGuy/PiggyCustomEnchants/items/PiggyEnchantedBookItem.php index 8c9119c..efd52a6 100644 --- a/src/DaPigGuy/PiggyCustomEnchants/items/PiggyEnchantedBookItem.php +++ b/src/DaPigGuy/PiggyCustomEnchants/items/PiggyEnchantedBookItem.php @@ -14,7 +14,7 @@ final class PiggyEnchantedBookItem extends Item implements ItemComponents public function __construct(ItemIdentifier $identifier, string $name = "Enchanted Book") { parent::__construct($identifier, $name); - $this->initComponent("enchanted_book"); + $this->initComponent("book_enchanted"); } public function getMaxStackSize(): int