(svn r3323) - Fix: automatically enable new AI when turning on the AI in multiplayer feature (it only works that way and we all know users don't read).

This commit is contained in:
Darkvater
2005-12-20 21:24:50 +00:00
parent 0f41b99c5e
commit db03c5d5e8
2 changed files with 6 additions and 3 deletions

View File

@@ -567,7 +567,10 @@ static int32 AiNew_PatchActive_Warning(int32 p1)
static int32 Ai_In_Multiplayer_Warning(int32 p1)
{
if (p1 == 1) ShowErrorMessage(INVALID_STRING_ID, TEMP_AI_MULTIPLAYER, 0, 0);
if (p1 == 1) {
ShowErrorMessage(INVALID_STRING_ID, TEMP_AI_MULTIPLAYER, 0, 0);
_patches.ainew_active = true;
}
return 0;
}