From 1004b466c33199b4c6903bbc676b06b8a34a81d9 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Sat, 22 Sep 2007 18:55:52 +0000 Subject: [PATCH] updated game protocol --- src/game/game_protocol.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/game/game_protocol.h b/src/game/game_protocol.h index 3ef491ef9..c21d9301c 100644 --- a/src/game/game_protocol.h +++ b/src/game/game_protocol.h @@ -5,8 +5,8 @@ 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 = 13.5f; -const float air_control_speed = 3.5f; -const float air_control_accel = 1.2f; +const float air_control_speed = 5.0f; +const float air_control_accel = 1.5f; const float air_friction = 0.95f; const float hook_length = 34*10.0f; const float hook_fire_speed = 45.0f; @@ -153,6 +153,7 @@ struct obj_player_core int vx, vy; int angle; + int hooked_player; int hook_state; int hook_x, hook_y; int hook_dx, hook_dy;