Skip to content

Commit 64c0e40

Browse files
committedJan 16, 2014
Prevent player jumping into nodes from below
Fixes camera glitch and cheating at drowning
1 parent 1b4908b commit 64c0e40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/player.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Player::Player(IGameDef *gamedef):
4747
m_yaw(0),
4848
m_speed(0,0,0),
4949
m_position(0,0,0),
50-
m_collisionbox(-BS*0.30,0.0,-BS*0.30,BS*0.30,BS*1.55,BS*0.30),
50+
m_collisionbox(-BS*0.30,0.0,-BS*0.30,BS*0.30,BS*1.75,BS*0.30),
5151
m_last_pitch(0),
5252
m_last_yaw(0),
5353
m_last_pos(0,0,0),

0 commit comments

Comments
 (0)
Please sign in to comment.