From 110834e85983f586f50b2b13498ff2924f8073aa Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Mon, 10 Dec 2007 21:30:19 +0000 Subject: [PATCH] fixed nameplats in spectator --- src/game/client/game_client.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index d1bdfe2b5..b8af6e06e 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -2222,7 +2222,10 @@ void render_game() } } - local_target_pos = local_character_pos + mouse_pos; + if(spectate) + local_target_pos = mouse_pos; + else + local_target_pos = local_character_pos + mouse_pos; // snap input {