Also remove disabled players from skirmish games with scavengers turned on.
git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@9725 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
44d6340eac
commit
6b22f1855d
|
@ -537,20 +537,17 @@ static BOOL gameInit(void)
|
||||||
cleanMap(player);
|
cleanMap(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove baba player for skirmish
|
for (player = 1; player < MAX_PLAYERS; player++)
|
||||||
if (!game.scavengers)
|
|
||||||
{
|
{
|
||||||
for (player = 1; player < MAX_PLAYERS; player++)
|
// we want to remove disabled AI & all the other players that don't belong
|
||||||
|
if ((game.skDiff[player] == 0 || player >= game.maxPlayers) && (!game.scavengers || player != 7))
|
||||||
{
|
{
|
||||||
// we want to remove disabled AI & all the other players that don't belong
|
clearPlayer(player, true, false);
|
||||||
if (game.skDiff[player] == 0 || player >= game.maxPlayers)
|
debug(LOG_NET, "removing disabled AI (%d) from map.", player);
|
||||||
{
|
|
||||||
clearPlayer(player, true, false);
|
|
||||||
debug(LOG_NET, "Removing disabled AI (%d) from map.", player);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if (game.scavengers) // FIXME - not sure if we still need this hack - Per
|
||||||
{
|
{
|
||||||
// ugly hack for now
|
// ugly hack for now
|
||||||
game.skDiff[7] = DIFF_SLIDER_STOPS / 2;
|
game.skDiff[7] = DIFF_SLIDER_STOPS / 2;
|
||||||
|
|
Loading…
Reference in New Issue