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/localplayer.h | |
parent | 7640749d68b87a62868840d34a665101861ca9c0 (diff) | |
download | dragonfireclient-edbc533414b0ba991a82f8003d90924e1dc60d95.tar.xz |
Customizeable max breath for players (#6411)
* Customizeable maximal breath for players
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 35c8b64ba..a407181b1 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -173,7 +173,7 @@ private: // ***** End of variables for temporary option ***** bool m_can_jump = false; - u16 m_breath = PLAYER_MAX_BREATH; + u16 m_breath = PLAYER_MAX_BREATH_DEFAULT; f32 m_yaw = 0.0f; f32 m_pitch = 0.0f; bool camera_barely_in_ceiling = false; |