Fixed #303 Checking plants position on normal block update

This commit is contained in:
Shoghi Cervantes
2013-05-29 11:53:48 +02:00
parent 4a969257d1
commit 8192b41693
12 changed files with 214 additions and 15 deletions

View File

@ -31,6 +31,17 @@ class RedMushroomBlock extends FlowableBlock{
$this->isFlowable = true;
}
public function onUpdate($type){
if($type === BLOCK_UPDATE_NORMAL){
if($this->getSide(0)->isFlowable === true){ //Replace wit common break method
ServerAPI::request()->api->entity->drop($this, BlockAPI::getItem($this->id));
$this->level->setBlock($this, new AirBlock(), false);
return BLOCK_UPDATE_NORMAL;
}
}
return false;
}
public function place(Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
$down = $this->getSide(0);
if($down->isTransparent === false){