From eb7131bd126b06c348313de6ab07d5d59f7c79c0 Mon Sep 17 00:00:00 2001 From: "luksor111@gmail.com" Date: Mon, 26 Nov 2012 10:03:34 +0000 Subject: Fixed certain blocks crashing clients when mined Fixed rail duplication glitch Fixed fall damage calculation Glass no longer drops glass git-svn-id: http://mc-server.googlecode.com/svn/trunk@1068 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/Player.cpp') 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); -- cgit v1.2.3