about summary refs log tree commit diff
path: root/src/game/g_game.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-20 00:53:49 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-20 00:53:49 +0000
commita950501b22030e297c793773521fe4fd0c52f711 (patch)
tree9a9c4122a666b37248f64006bd6aec76f6141a4f /src/game/g_game.cpp
parent980e4885f0db3f56b5ec31359393741dd8a27672 (diff)
downloadzcatch-a950501b22030e297c793773521fe4fd0c52f711.tar.gz
zcatch-a950501b22030e297c793773521fe4fd0c52f711.zip
removed some debugging code
Diffstat (limited to 'src/game/g_game.cpp')
-rw-r--r--src/game/g_game.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/game/g_game.cpp b/src/game/g_game.cpp
index fb0c5ee9..800c41ba 100644
--- a/src/game/g_game.cpp
+++ b/src/game/g_game.cpp
@@ -275,13 +275,6 @@ void player_core::tick()
 				vec2 closest_point = closest_point_on_line(hook_pos, new_pos, p->pos);
 				if(distance(p->pos, closest_point) < phys_size+2.0f)
 				{
-					dbg_msg("", "state=%d p0=%f,%f p1=%f,%f t=%f,%f c=%f,%f",
-						hook_state,
-						hook_pos.x, hook_pos.y,
-						new_pos.x, new_pos.y,
-						p->pos.x, p->pos.y,
-						closest_point.x, closest_point.y
-						);
 					triggered_events |= COREEVENT_HOOK_ATTACH_PLAYER;
 					hook_state = HOOK_GRABBED;
 					hooked_player = i;