summaryrefslogtreecommitdiffstats
path: root/source/Player.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/Player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Player.cpp b/source/Player.cpp
index cf9e4be99..cd4c6d11c 100644
--- a/source/Player.cpp
+++ b/source/Player.cpp
@@ -290,7 +290,7 @@ void cPlayer::SetTouchGround(bool a_bTouchGround)
if (m_bTouchGround)
{
float Dist = (float)(m_LastGroundHeight - m_Pos.y);
- int Damage = (int)(Dist - 4.f);
+ int Damage = (int)(Dist - 3.f);
if (Damage > 0)
{
TakeDamage(Damage, 0);