mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Item no age & no player pickup
This commit is contained in:
parent
9c8829553b
commit
dac5c6c48a
1 changed files with 29 additions and 0 deletions
|
@ -104,5 +104,34 @@ public interface Item extends Entity {
|
||||||
* @param canMobPickup True to allow non-player entity pickup
|
* @param canMobPickup True to allow non-player entity pickup
|
||||||
*/
|
*/
|
||||||
public void setCanMobPickup(boolean canMobPickup);
|
public void setCanMobPickup(boolean canMobPickup);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets whether the player can pickup the item or not
|
||||||
|
*
|
||||||
|
* @return True if a player can pickup the item
|
||||||
|
*/
|
||||||
|
public boolean canPlayerPickup();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets whether the item can be picked up or not. Modifies the pickup delay value to do so.
|
||||||
|
*
|
||||||
|
* @param canPlayerPickup True if the player can pickup the item
|
||||||
|
*/
|
||||||
|
public void setCanPlayerPickup(boolean canPlayerPickup);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets whether the item will age and despawn from being on the ground too long
|
||||||
|
*
|
||||||
|
* @return True if the item will age
|
||||||
|
*/
|
||||||
|
public boolean willAge();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets whether the item will age or not. If the item is not ageing, it will not despawn
|
||||||
|
* by being on the ground for too long.
|
||||||
|
*
|
||||||
|
* @param willAge True if the item should age
|
||||||
|
*/
|
||||||
|
public void setWillAge(boolean willAge);
|
||||||
// Paper end
|
// Paper end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue