Clean up garbage in Tree populators

This commit is contained in:
Dylan K. Taylor
2018-10-15 18:08:07 +01:00
parent cfee0a4e0b
commit 70054de575
5 changed files with 32 additions and 33 deletions

View File

@ -29,9 +29,6 @@ use pocketmine\block\Wood;
class JungleTree extends Tree{
public function __construct(){
$this->trunkBlock = Block::LOG;
$this->leafBlock = Block::LEAVES;
$this->type = Wood::JUNGLE;
$this->treeHeight = 8;
parent::__construct(Block::LOG, Block::LEAVES, Wood::JUNGLE, 8);
}
}