(svn r9540) -Fix (r1): Bankrupt AIs no longer buy themselves (usage of wrong variable)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
celestar 17 years ago
parent 32c3ba6604
commit e3f1914de0

@ -3822,7 +3822,7 @@ static void AiHandleTakeover(Player *p)
if (best_pl->player_money >> 1 >= p->bankrupt_value) {
// Computer wants to buy it.
PlayerID old_p = _current_player;
_current_player = p->index;
_current_player = best_pl->index;
DoCommand(0, old_p, 0, DC_EXEC, CMD_BUY_COMPANY);
_current_player = old_p;
}

Loading…
Cancel
Save