mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
Tree: avoid astonishing behaviour with dark-oak and acacia saplings
ref #1973, these should simply not grow at all since they are not implemented yet.
This commit is contained in:
parent
619390c5b7
commit
ed65e91a3c
@ -60,7 +60,9 @@ abstract class Tree{
|
||||
case Sapling::JUNGLE:
|
||||
$tree = new JungleTree();
|
||||
break;
|
||||
case Sapling::OAK:
|
||||
case Sapling::ACACIA:
|
||||
case Sapling::DARK_OAK:
|
||||
return; //TODO
|
||||
default:
|
||||
$tree = new OakTree();
|
||||
/*if($random->nextRange(0, 9) === 0){
|
||||
|
Loading…
x
Reference in New Issue
Block a user