diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2017-09-15 12:18:47 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-09-15 12:18:47 +0200 |
commit | edbc533414b0ba991a82f8003d90924e1dc60d95 (patch) | |
tree | 9fe4c04bc35f345e9a62f1358fa5e0ad324938e9 /src/constants.h | |
parent | 7640749d68b87a62868840d34a665101861ca9c0 (diff) | |
download | minetest-edbc533414b0ba991a82f8003d90924e1dc60d95.tar.gz minetest-edbc533414b0ba991a82f8003d90924e1dc60d95.tar.bz2 minetest-edbc533414b0ba991a82f8003d90924e1dc60d95.zip |
Customizeable max breath for players (#6411)
* Customizeable maximal breath for players
Diffstat (limited to 'src/constants.h')
-rw-r--r-- | src/constants.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/constants.h b/src/constants.h index ddf7218e2..5ddb54656 100644 --- a/src/constants.h +++ b/src/constants.h @@ -89,11 +89,11 @@ with this program; if not, write to the Free Software Foundation, Inc., // Size of player's main inventory #define PLAYER_INVENTORY_SIZE (8 * 4) -// Maximum hit points of a player +// Default maximum hit points of a player #define PLAYER_MAX_HP_DEFAULT 20 -// Maximal breath of a player -#define PLAYER_MAX_BREATH 11 +// Default maximal breath of a player +#define PLAYER_MAX_BREATH_DEFAULT 11 // Number of different files to try to save a player to if the first fails // (because of a case-insensitive filesystem) |