Normalized Item Names

This commit is contained in:
Shoghi Cervantes Pueyo 2013-03-29 20:11:53 +01:00
parent 6d39f54591
commit 3f2cb86859
10 changed files with 10 additions and 10 deletions

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}

View File

@ -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");
}
}