mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 06:42:02 +01:00
Added spawnCreature(Location, CreatureType)
This function will allow spawning of creatures in the world, removing the need to interface with CraftBukkit directly. By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
parent
ca55cacd67
commit
eb206f49c1
@ -5,6 +5,8 @@ import java.util.List;
|
||||
import org.bukkit.block.Block;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.util.Vector;
|
||||
import org.bukkit.entity.Creature;
|
||||
import org.bukkit.entity.CreatureType;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.ItemDrop;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
@ -237,6 +239,16 @@ public interface World {
|
||||
*/
|
||||
public Boat spawnBoat(Location loc);
|
||||
|
||||
/**
|
||||
* Spawn a creature at the given location.
|
||||
*
|
||||
* @param loc The location to spawn at.
|
||||
* @param creatureType The creature to spawn.
|
||||
*
|
||||
* @return The Creature if it was spawned, null otherwise.
|
||||
*/
|
||||
public Creature spawnCreature(Location loc, CreatureType creatureType);
|
||||
|
||||
/**
|
||||
* Get a list of all entities.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user