mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-17 00:44:08 +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 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 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