From 91315645cde48cc97783a5df5beab1d15f5bddf3 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 28 Mar 2015 07:25:42 +0100 Subject: [PATCH] Added missing LEATHER_BOOTs to Item::$list For some reason the leather boots are missing. --- src/pocketmine/item/Item.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pocketmine/item/Item.php b/src/pocketmine/item/Item.php index 71d081c50..905b927c1 100644 --- a/src/pocketmine/item/Item.php +++ b/src/pocketmine/item/Item.php @@ -431,6 +431,7 @@ class Item{ self::$list[self::LEATHER_CAP] = LeatherCap::class; self::$list[self::LEATHER_TUNIC] = LeatherTunic::class; self::$list[self::LEATHER_PANTS] = LeatherPants::class; + self::$list[self::LEATHER_BOOTS] = LeatherBoots::class; self::$list[self::CHAIN_HELMET] = ChainHelmet::class; self::$list[self::CHAIN_CHESTPLATE] = ChainChestplate::class; self::$list[self::CHAIN_LEGGINGS] = ChainLeggings::class;