Added spawnCreature(Location, CreatureType)
This function will allow spawning of creatures in the world, removing the need to interface with CraftBukkit directly.
This commit is contained in:
parent
ac68b8594e
commit
64e82042a6
@ -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…
x
Reference in New Issue
Block a user