mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-09 03:06:55 +00:00
Clean up garbage in Tree populators
This commit is contained in:
@ -29,13 +29,11 @@ use pocketmine\level\ChunkManager;
|
||||
use pocketmine\utils\Random;
|
||||
|
||||
class BirchTree extends Tree{
|
||||
|
||||
/** @var bool */
|
||||
protected $superBirch = false;
|
||||
|
||||
public function __construct(bool $superBirch = false){
|
||||
$this->trunkBlock = Block::LOG;
|
||||
$this->leafBlock = Block::LEAVES;
|
||||
$this->type = Wood::BIRCH;
|
||||
parent::__construct(Block::LOG, Block::LEAVES, Wood::BIRCH);
|
||||
$this->superBirch = $superBirch;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user