mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 02:42:58 +00:00
Fix formatting issues due to bad IDE settings
This commit is contained in:
@ -25,37 +25,37 @@ use pocketmine\item\Item;
|
||||
|
||||
class StainedClay extends Solid{
|
||||
|
||||
protected $id = self::STAINED_CLAY;
|
||||
protected $id = self::STAINED_CLAY;
|
||||
|
||||
public function __construct($meta = 0){
|
||||
$this->meta = $meta;
|
||||
$this->meta = $meta;
|
||||
}
|
||||
|
||||
public function getHardness(){
|
||||
return 30;
|
||||
}
|
||||
public function getHardness(){
|
||||
return 30;
|
||||
}
|
||||
|
||||
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];
|
||||
}
|
||||
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];
|
||||
}
|
||||
|
||||
public function getBreakTime(Item $item){
|
||||
switch($item->isPickaxe()){
|
||||
|
Reference in New Issue
Block a user