about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-09-22 18:55:52 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-09-22 18:55:52 +0000
commit1004b466c33199b4c6903bbc676b06b8a34a81d9 (patch)
tree02889ac58461a6fea4e44a4bb76092de60f9199c /src
parent3316d99955315ea982bf0a296382a5feb0e0f1e5 (diff)
downloadzcatch-1004b466c33199b4c6903bbc676b06b8a34a81d9.tar.gz
zcatch-1004b466c33199b4c6903bbc676b06b8a34a81d9.zip
updated game protocol
Diffstat (limited to 'src')
-rw-r--r--src/game/game_protocol.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/game_protocol.h b/src/game/game_protocol.h
index 3ef491ef..c21d9301 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;