Fix formatting issues due to bad IDE settings

This commit is contained in:
Shoghi Cervantes
2014-12-07 16:30:04 +01:00
parent bb82e7be50
commit 747f7685e7
191 changed files with 1315 additions and 1304 deletions

View File

@ -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()){