From 9560a1d9ec28080ab2fd49f760591da5fe85a08d Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 26 Dec 2006 12:56:48 +0000 Subject: (svn r7561) -Fix (FS#431): core and (patches) GUI were not in-sync with respect to autorenew settings. This is only a temporary fix, as the definite fix needs to move the autorenew settings to a per-company settings window. --- economy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'economy.c') diff --git a/economy.c b/economy.c index 9ced54475..97fc55c0d 100644 --- a/economy.c +++ b/economy.c @@ -420,7 +420,8 @@ static void PlayersCheckBankrupt(Player *p) p->bankrupt_timeout = 0x456; break; } else if (owner == _local_player) { - _local_player = _network_playas = PLAYER_SPECTATOR; + _network_playas = PLAYER_SPECTATOR; + SetLocalPlayer(PLAYER_SPECTATOR); } #ifdef ENABLE_NETWORK -- cgit v1.2.3-54-g00ecf