mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 18:32:55 +00:00
Cleaned up some copy-pasted code for coloured blocks names
This commit is contained in:
@ -23,6 +23,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace pocketmine\block;
|
||||
|
||||
use pocketmine\block\utils\ColorBlockMetaHelper;
|
||||
use pocketmine\item\Tool;
|
||||
|
||||
class StainedClay extends Solid{
|
||||
@ -42,25 +43,7 @@ class StainedClay extends Solid{
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
static $names = [
|
||||
0 => "White Stained Clay",
|
||||
1 => "Orange Stained Clay",
|
||||
2 => "Magenta Stained Clay",
|
||||
3 => "Light Blue Stained Clay",
|
||||
4 => "Yellow Stained Clay",
|
||||
5 => "Lime Stained Clay",
|
||||
6 => "Pink Stained Clay",
|
||||
7 => "Gray Stained Clay",
|
||||
8 => "Light Gray Stained Clay",
|
||||
9 => "Cyan Stained Clay",
|
||||
10 => "Purple Stained Clay",
|
||||
11 => "Blue Stained Clay",
|
||||
12 => "Brown Stained Clay",
|
||||
13 => "Green Stained Clay",
|
||||
14 => "Red Stained Clay",
|
||||
15 => "Black Stained Clay",
|
||||
];
|
||||
return $names[$this->meta & 0x0f];
|
||||
return ColorBlockMetaHelper::getColorFromMeta($this->meta) . " Stained Clay";
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user