mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 04:17:44 +01:00
Added ItemDrop, world.dropItem(), and world.dropItemNaturally().
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
75aa4ef4c5
commit
1105de519d
15
paper-api/src/main/java/org/bukkit/ItemDrop.java
Normal file
15
paper-api/src/main/java/org/bukkit/ItemDrop.java
Normal file
@ -0,0 +1,15 @@
|
||||
package org.bukkit;
|
||||
|
||||
/**
|
||||
* Represents a dropped item.
|
||||
*
|
||||
* @author sk89q
|
||||
*/
|
||||
public interface ItemDrop extends Entity {
|
||||
/**
|
||||
* Gets the item stack.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public ItemStack getItemStack();
|
||||
}
|
@ -52,6 +52,24 @@ public interface World {
|
||||
*/
|
||||
public boolean isChunkLoaded(Chunk chunk);
|
||||
|
||||
/**
|
||||
* Drop an item exactly at the specified location.
|
||||
*
|
||||
* @param loc
|
||||
* @param item
|
||||
* @return dropped item entity
|
||||
*/
|
||||
public ItemDrop dropItem(Location loc, ItemStack item);
|
||||
|
||||
/**
|
||||
* Drop an item as if it was mined (randomly placed).
|
||||
*
|
||||
* @param loc
|
||||
* @param item
|
||||
* @return dropped item entity
|
||||
*/
|
||||
public ItemDrop dropItemNaturally(Location loc, ItemStack item);
|
||||
|
||||
/**
|
||||
* Spawns an arrow.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user