Remove redundant override in Fallable

This commit is contained in:
Dylan K. Taylor 2016-12-16 16:33:31 +00:00
parent 5ce6c6227f
commit 0380c78926

View File

@ -35,12 +35,6 @@ use pocketmine\Player;
abstract class Fallable extends Solid{
public function place(Item $item, Block $block, Block $target, $face, $fx, $fy, $fz, Player $player = null){
$ret = $this->getLevel()->setBlock($this, $this, true, true);
return $ret;
}
public function onUpdate($type){
if($type === Level::BLOCK_UPDATE_NORMAL){
$down = $this->getSide(Vector3::SIDE_DOWN);