From 3f2cb86859509ef6f27c65b7ef4d4f9d96b20881 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Fri, 29 Mar 2013 20:11:53 +0100 Subject: [PATCH] Normalized Item Names --- src/material/item/generic/GoldIngot.php | 2 +- src/material/item/generic/IronAxe.php | 2 +- src/material/item/generic/IronHoe.php | 2 +- src/material/item/generic/IronIngot.php | 2 +- src/material/item/generic/IronPickaxe.php | 2 +- src/material/item/generic/IronShovel.php | 2 +- src/material/item/generic/WoodenAxe.php | 2 +- src/material/item/generic/WoodenPickaxe.php | 2 +- src/material/item/generic/WoodenShovel.php | 2 +- src/material/item/generic/WoodenSword.php | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/material/item/generic/GoldIngot.php b/src/material/item/generic/GoldIngot.php index 036a14e7f..4177a1843 100644 --- a/src/material/item/generic/GoldIngot.php +++ b/src/material/item/generic/GoldIngot.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class GoldIngotItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(GOLD_INGOT, 0, $count, "GoldIngot"); + parent::__construct(GOLD_INGOT, 0, $count, "Gold Ingot"); } } \ No newline at end of file diff --git a/src/material/item/generic/IronAxe.php b/src/material/item/generic/IronAxe.php index 94688afbd..e3692c561 100644 --- a/src/material/item/generic/IronAxe.php +++ b/src/material/item/generic/IronAxe.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class IronAxeItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(IRON_AXE, 0, $count, "IronAxe"); + parent::__construct(IRON_AXE, 0, $count, "Iron Axe"); } } \ No newline at end of file diff --git a/src/material/item/generic/IronHoe.php b/src/material/item/generic/IronHoe.php index 0dd570333..8f3eb37c3 100644 --- a/src/material/item/generic/IronHoe.php +++ b/src/material/item/generic/IronHoe.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class IronHoeItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(IRON_HOE, 0, $count, "IronHoe"); + parent::__construct(IRON_HOE, 0, $count, "Iron Hoe"); } } \ No newline at end of file diff --git a/src/material/item/generic/IronIngot.php b/src/material/item/generic/IronIngot.php index da0d32d8d..dfbbd940a 100644 --- a/src/material/item/generic/IronIngot.php +++ b/src/material/item/generic/IronIngot.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class IronIngotItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(IRON_INGOT, 0, $count, "IronIngot"); + parent::__construct(IRON_INGOT, 0, $count, "Iron Ingot"); } } \ No newline at end of file diff --git a/src/material/item/generic/IronPickaxe.php b/src/material/item/generic/IronPickaxe.php index 41375d099..15b911c3d 100644 --- a/src/material/item/generic/IronPickaxe.php +++ b/src/material/item/generic/IronPickaxe.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class IronPickaxeItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(IRON_PICKAXE, 0, $count, "IronPickaxeItem"); + parent::__construct(IRON_PICKAXE, 0, $count, "Iron Pickaxe"); } } \ No newline at end of file diff --git a/src/material/item/generic/IronShovel.php b/src/material/item/generic/IronShovel.php index 762385bdc..7dddbb410 100644 --- a/src/material/item/generic/IronShovel.php +++ b/src/material/item/generic/IronShovel.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class IronShovelItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(IRON_SHOVEL, 0, $count, "IronShovel"); + parent::__construct(IRON_SHOVEL, 0, $count, "Iron Shovel"); } } \ No newline at end of file diff --git a/src/material/item/generic/WoodenAxe.php b/src/material/item/generic/WoodenAxe.php index fb5658889..99dde6aa0 100644 --- a/src/material/item/generic/WoodenAxe.php +++ b/src/material/item/generic/WoodenAxe.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class WoodenAxeItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(WOODEN_AXE, 0, $count, "WoodenAxeItem"); + parent::__construct(WOODEN_AXE, 0, $count, "Wooden Axe"); } } diff --git a/src/material/item/generic/WoodenPickaxe.php b/src/material/item/generic/WoodenPickaxe.php index 9b578ad2e..277db6e4c 100644 --- a/src/material/item/generic/WoodenPickaxe.php +++ b/src/material/item/generic/WoodenPickaxe.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class WoodenPickaxeItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(WOODEN_PICKAXE, 0, $count, "WoodenPickaxeItem"); + parent::__construct(WOODEN_PICKAXE, 0, $count, "Wooden Pickaxe"); } } diff --git a/src/material/item/generic/WoodenShovel.php b/src/material/item/generic/WoodenShovel.php index 6b2e17c91..c0cb8e322 100644 --- a/src/material/item/generic/WoodenShovel.php +++ b/src/material/item/generic/WoodenShovel.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class WoodenShovelItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(WOODEN_SHOVEL, 0, $count, "WoodenShovelItem"); + parent::__construct(WOODEN_SHOVEL, 0, $count, "Wooden Shovel"); } } diff --git a/src/material/item/generic/WoodenSword.php b/src/material/item/generic/WoodenSword.php index a6dddfa8a..1974b5ffb 100644 --- a/src/material/item/generic/WoodenSword.php +++ b/src/material/item/generic/WoodenSword.php @@ -27,7 +27,7 @@ the Free Software Foundation, either version 3 of the License, or class WoodenSwordItem extends Item{ public function __construct($meta = 0, $count = 1){ - parent::__construct(WOODEN_SWORD, 0, $count, "WoodenSwordItem"); + parent::__construct(WOODEN_SWORD, 0, $count, "Wooden Sword"); } }