Skip to content

Commit

Permalink
[RA] Enable AM units in skirmish when expansion detected.
Browse files Browse the repository at this point in the history
  • Loading branch information
OmniBlade committed Jun 19, 2024
1 parent 08bd6a5 commit 5f4997f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions redalert/scenario.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2635,9 +2635,15 @@ bool Read_Scenario_INI(char* fname, bool)
*/
#ifdef FIXIT_CSII // checked - ajw 9/28/98 - Added runtime check.
if (Is_Aftermath_Installed()) {
#ifdef REMASTER_BUILD
if (Session.Type == GAME_SKIRMISH || Session.Type == GAME_GLYPHX_MULTIPLAYER) {
bAftermathMultiplayer = NewUnitsEnabled = OverrideNewUnitsEnabled;
}
#else
if (Session.Type == GAME_SKIRMISH) {
bAftermathMultiplayer = NewUnitsEnabled = true;
}
#endif
}
#endif
ScenarioInit--;
Expand Down

0 comments on commit 5f4997f

Please sign in to comment.