From 75a8abcd2ce4c9ffca73f257b896ad5881796d49 Mon Sep 17 00:00:00 2001 From: OmniBlade Date: Wed, 19 Jun 2024 13:23:48 +0100 Subject: [PATCH] [RA] Enable AM units in skirmish when expansion detected. --- redalert/scenario.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/redalert/scenario.cpp b/redalert/scenario.cpp index 8e9e181c..19ef304a 100644 --- a/redalert/scenario.cpp +++ b/redalert/scenario.cpp @@ -2636,7 +2636,11 @@ bool Read_Scenario_INI(char* fname, bool) #ifdef FIXIT_CSII // checked - ajw 9/28/98 - Added runtime check. if (Is_Aftermath_Installed()) { if (Session.Type == GAME_SKIRMISH || Session.Type == GAME_GLYPHX_MULTIPLAYER) { - bAftermathMultiplayer = NewUnitsEnabled = OverrideNewUnitsEnabled; +#ifdef REMASTER_BUILD + bAftermathMultiplayer = NewUnitsEnabled = OverrideNewUnitsEnabled; +#else + bAftermathMultiplayer = NewUnitsEnabled; +#endif } } #endif