mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
Added Player saturation, exhaustion and food level methods
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
e6b33d8a08
commit
a17998c2c7
1 changed files with 49 additions and 0 deletions
|
@ -334,4 +334,53 @@ public interface Player extends HumanEntity, CommandSender, OfflinePlayer {
|
|||
* @param exp New experience level
|
||||
*/
|
||||
public void setTotalExperience(int exp);
|
||||
|
||||
/**
|
||||
* Gets the players current exhaustion level.
|
||||
* <p>
|
||||
* Exhaustion controls how fast the food level drops. While you have a certain
|
||||
* amount of exhaustion, your saturation will drop to zero, and then your food
|
||||
* will drop to zero.
|
||||
*
|
||||
* @return Exhaustion level
|
||||
*/
|
||||
public float getExhaustion();
|
||||
|
||||
/**
|
||||
* Sets the players current exhaustion level
|
||||
*
|
||||
* @param value Exhaustion level
|
||||
*/
|
||||
public void setExhaustion(float value);
|
||||
|
||||
/**
|
||||
* Gets the players current saturation level.
|
||||
* <p>
|
||||
* Saturation is a buffer for food level. Your food level will not drop if you
|
||||
* are saturated > 0.
|
||||
*
|
||||
* @return Saturation level
|
||||
*/
|
||||
public float getSaturation();
|
||||
|
||||
/**
|
||||
* Sets the players current saturation level
|
||||
*
|
||||
* @param value Exhaustion level
|
||||
*/
|
||||
public void setSaturation(float value);
|
||||
|
||||
/**
|
||||
* Gets the players current food level
|
||||
*
|
||||
* @return Food level
|
||||
*/
|
||||
public int getFoodLevel();
|
||||
|
||||
/**
|
||||
* Sets the players current food level
|
||||
*
|
||||
* @param value New food level
|
||||
*/
|
||||
public void setFoodLevel(int value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue