diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-01 06:17:18 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-01 06:17:18 +0000 |
| commit | 441e9f582f0da74164d2f782774a0228cf13e7bc (patch) | |
| tree | 1aef58df21cf70b024792e770c2e9d059ceb5725 /src | |
| parent | c53805514d3b542a0b92ad8faed3eee2893183ee (diff) | |
| download | zcatch-441e9f582f0da74164d2f782774a0228cf13e7bc.tar.gz zcatch-441e9f582f0da74164d2f782774a0228cf13e7bc.zip | |
tweaked jump height and hooklength
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/server/game_server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/server/game_server.cpp b/src/game/server/game_server.cpp index a647b033..61677147 100644 --- a/src/game/server/game_server.cpp +++ b/src/game/server/game_server.cpp @@ -17,11 +17,11 @@ const bool debug_bots = false; const float ground_control_speed = 7.0f; const float ground_control_accel = 2.0f; const float ground_friction = 0.5f; -const float ground_jump_speed = 12.0f; +const float ground_jump_speed = 13.5f; const float air_control_speed = 3.5f; const float air_control_accel = 1.2f; const float air_friction = 0.95f; -const float hook_length = 32*10.0f; +const float hook_length = 34*10.0f; const float hook_fire_speed = 45.0f; const float hook_drag_accel = 3.0f; const float hook_drag_speed = 15.0f; |