1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-27 17:28:41 +00:00

handleCommand_Breath mustn't update breath is player is dead. A dead player doesn't breath.

Add Player::isDead function to check player is dead
This commit is contained in:
Loic Blot 2015-03-12 11:27:28 +01:00
parent 3067d78216
commit afb19f3a1f
2 changed files with 12 additions and 0 deletions

View file

@ -238,6 +238,9 @@ public:
inventory.setModified(x);
}
// Use a function, if isDead can be defined by other conditions
bool isDead() { return hp == 0; }
bool touching_ground;
// This oscillates so that the player jumps a bit above the surface
bool in_liquid;