geforkt von Mirrors/Paper
Add clear inventory API to PlayerInventory with a successful count return. Adds BUKKIT-2745
By: EvilSeph <evilseph@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
c85072fc41
Commit
3276998ebe
@ -102,5 +102,16 @@ public interface PlayerInventory extends Inventory {
|
||||
*/
|
||||
public int getHeldItemSlot();
|
||||
|
||||
/**
|
||||
* Clears all matching items from the inventory. Setting either value to -1 will skip it's check,
|
||||
* while setting both to -1 will clear all items in your inventory unconditionally.
|
||||
*
|
||||
* @param id the id of the item you want to clear from the inventory
|
||||
* @param data the data of the item you want to clear from the inventory
|
||||
*
|
||||
* @return The number of items cleared
|
||||
*/
|
||||
public int clear(int id, int data);
|
||||
|
||||
public HumanEntity getHolder();
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren