mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 16:51:42 +00:00
Normalized Item Names
This commit is contained in:
parent
6d39f54591
commit
3f2cb86859
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user