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,21 +25,21 @@ use pocketmine\level\Level;
class DeadBush extends Flowable{
protected $id = self::DEAD_BUSH;
protected $id = self::DEAD_BUSH;
public function __construct($meta = 0){
$this->meta = $meta;
}
public function getName(){
return "Dead Bush";
}
public function getName(){
return "Dead Bush";
}
public function onUpdate($type){
if($type === Level::BLOCK_UPDATE_NORMAL){
if($this->getSide(0)->isTransparent() === true){
$this->getLevel()->useBreakOn($this);
$this->getLevel()->useBreakOn($this);
return Level::BLOCK_UPDATE_NORMAL;
}