diff options
author | SmallJoker <mk939@ymail.com> | 2015-02-04 09:00:34 +0100 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2015-02-05 17:33:08 +1000 |
commit | 929e0b0ad8a1e2a7b373f5661e52e2384a24916d (patch) | |
tree | ff1b218193e9fc1e6dede0fa95142a91ee0b662c /src/player.cpp | |
parent | 5e075c3344911176421be3ae08e2bdc432a83b8f (diff) | |
download | minetest-929e0b0ad8a1e2a7b373f5661e52e2384a24916d.tar.gz minetest-929e0b0ad8a1e2a7b373f5661e52e2384a24916d.tar.bz2 minetest-929e0b0ad8a1e2a7b373f5661e52e2384a24916d.zip |
Give full breath after death
Diffstat (limited to 'src/player.cpp')
-rw-r--r-- | src/player.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/player.cpp b/src/player.cpp index 64c138d02..0da761eed 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -47,7 +47,7 @@ Player::Player(IGameDef *gamedef, const char *name): keyPressed(0), // protected m_gamedef(gamedef), - m_breath(-1), + m_breath(PLAYER_MAX_BREATH), m_pitch(0), m_yaw(0), m_speed(0,0,0), @@ -213,12 +213,12 @@ void Player::deSerialize(std::istream &is, std::string playername) try{ hp = args.getS32("hp"); }catch(SettingNotFoundException &e) { - hp = 20; + hp = PLAYER_MAX_HP; } try{ m_breath = args.getS32("breath"); }catch(SettingNotFoundException &e) { - m_breath = 11; + m_breath = PLAYER_MAX_BREATH; } inventory.deSerialize(is); |