Fixed crash

This commit is contained in:
Shoghi Cervantes 2013-06-08 13:45:42 +02:00
parent 54227b1d86
commit 28480424c5

View File

@ -44,7 +44,7 @@ class BrownMushroomBlock extends FlowableBlock{
public function place(Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){ public function place(Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
$down = $this->getSide(0); $down = $this->getSide(0);
if($down->isTransparent === false){ if($down->isTransparent === false){
$this->level->setBlock($block, $this->id, $this->getMetadata()); $this->level->setBlock($block, $this);
return true; return true;
} }
return false; return false;