Added missing LEATHER_BOOTs to Item::$list

For some reason the leather boots are missing.
This commit is contained in:
Alex 2015-03-28 07:25:42 +01:00
parent 6836e4fe58
commit 91315645cd

View File

@ -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;