mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 15:00:13 +01:00
Added world.spawnTree(), world.spawnBigTree().
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
c6d45a3ae2
commit
a2cbf2b29e
1 changed files with 16 additions and 0 deletions
|
@ -27,4 +27,20 @@ public interface World {
|
|||
*/
|
||||
public ArrowEntity spawnArrow(Location loc, Vector velocity,
|
||||
float speed, float spread);
|
||||
|
||||
/**
|
||||
* Spawns a tree at a location.
|
||||
*
|
||||
* @param loc
|
||||
* @return whether the tree was created
|
||||
*/
|
||||
public boolean generateTree(Location loc);
|
||||
|
||||
/**
|
||||
* Spawns a big tree at a location.
|
||||
*
|
||||
* @param loc
|
||||
* @return whether the tree was created
|
||||
*/
|
||||
public boolean generateBigTree(Location loc);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue