mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-18 13:53:49 -07:00
Implemented food methods + fixed dying resetting food
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
@@ -424,4 +424,28 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
||||
getHandle().exp = getTotalExperience();
|
||||
}
|
||||
}
|
||||
|
||||
public float getExhaustion() {
|
||||
return getHandle().V().c;
|
||||
}
|
||||
|
||||
public void setExhaustion(float value) {
|
||||
getHandle().V().c = value;
|
||||
}
|
||||
|
||||
public float getSaturation() {
|
||||
return getHandle().V().b;
|
||||
}
|
||||
|
||||
public void setSaturation(float value) {
|
||||
getHandle().V().b = value;
|
||||
}
|
||||
|
||||
public int getFoodLevel() {
|
||||
return getHandle().V().a;
|
||||
}
|
||||
|
||||
public void setFoodLevel(int value) {
|
||||
getHandle().V().a = value;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user