Skip to content

Commit

Permalink
Restore old acceleration behavior until something is actually agreed …
Browse files Browse the repository at this point in the history
…on (part 2)
  • Loading branch information
celeron55 committed Feb 15, 2013
1 parent 65cb318 commit 4035bf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/player.cpp
Expand Up @@ -59,9 +59,9 @@ Player::Player(IGameDef *gamedef):
"list[current_player;craftpreview;7,1;1,1;]";

// Initialize movement settings at default values, so movement can work if the server fails to send them
movement_acceleration_default = 2 * BS;
movement_acceleration_air = 0.5 * BS;
movement_acceleration_fast = 8 * BS;
movement_acceleration_default = 4 * BS;
movement_acceleration_air = 4 * BS;
movement_acceleration_fast = 4 * BS;
movement_speed_walk = 4 * BS;
movement_speed_crouch = 1.35 * BS;
movement_speed_fast = 20 * BS;
Expand Down

0 comments on commit 4035bf3

Please sign in to comment.