From bacbafe51094ab88c1e215d441566715040846c9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 26 May 2009 21:25:24 +0000 Subject: (svn r16437) -Codechange: remove the hack that for CMD_COMPANY_CTRL the company was changed from spectator to company 0 in the network code. --- src/network/network_server.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/network/network_server.cpp b/src/network/network_server.cpp index 07c638b09..8b1a5b669 100644 --- a/src/network/network_server.cpp +++ b/src/network/network_server.cpp @@ -895,7 +895,7 @@ DEF_SERVER_RECEIVE_COMMAND(PACKET_CLIENT_COMMAND) * @see CmdCompanyCtrl() */ if (cp.cmd == CMD_COMPANY_CTRL) { - if (cp.p1 != 0) { + if (cp.p1 != 0 || cp.company != COMPANY_SPECTATOR) { SEND_COMMAND(PACKET_SERVER_ERROR)(cs, NETWORK_ERROR_CHEATER); return; } @@ -906,10 +906,6 @@ DEF_SERVER_RECEIVE_COMMAND(PACKET_CLIENT_COMMAND) return; } - /* XXX - Execute the command as a valid company. Normally this would be done by a - * spectator, but that is not allowed any commands. So do an impersonation. The drawback - * of this is that the first company's last_built_tile is also updated... */ - cp.company = OWNER_BEGIN; cp.p2 = cs->client_id; } -- cgit v1.2.3-54-g00ecf