From 6158344d9a6a0adeb96d5dec049c16e4a2877862 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Fri, 8 Dec 2006 03:23:22 +0000 Subject: [PATCH] Fix PlayerControl bug. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2588 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/melee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/melee.c b/sc2/src/sc2code/melee.c index e89fc8c0d..a93e6ccaa 100644 --- a/sc2/src/sc2code/melee.c +++ b/sc2/src/sc2code/melee.c @@ -2350,7 +2350,7 @@ check_for_disconnections (PMELEE_STATE pMS) conn = netConnections[player]; if (conn == NULL || !NetConnection_isConnected (conn)) { - PlayerControl[player] = HUMAN_CONTROL & STANDARD_RATING; + PlayerControl[player] = HUMAN_CONTROL | STANDARD_RATING; DrawControls (player, FALSE); log_add (log_User, "Player %d has disconnected; shifting " "controls\n", player);