diff --git a/Tactical/Merc Entering.cpp b/Tactical/Merc Entering.cpp index 0ba37b2e..c49b3009 100644 --- a/Tactical/Merc Entering.cpp +++ b/Tactical/Merc Entering.cpp @@ -882,12 +882,6 @@ void HandleFirstHeliDropOfGame( ) // Are we in the first heli drop? if ( gfFirstHeliRun ) { -#ifdef JA2UB - SetHelicopterDroppoint( gGameUBOptions.LOCATEGRIDNO ); -#else - SetHelicopterDroppoint( gGameExternalOptions.iInitialMercArrivalLocation ); -#endif - SyncStrategicTurnTimes(); // Move to header file... diff --git a/gamescreen.cpp b/gamescreen.cpp index b2db6790..6211ac1f 100644 --- a/gamescreen.cpp +++ b/gamescreen.cpp @@ -1210,6 +1210,12 @@ void InitHelicopterEntranceByMercs( void ) gfTacticalDoHeliRun = TRUE; gfFirstHeliRun = TRUE; +#ifdef JA2UB + SetHelicopterDroppoint( gGameUBOptions.LOCATEGRIDNO ); +#else + SetHelicopterDroppoint( gGameExternalOptions.iInitialMercArrivalLocation ); +#endif + gTacticalStatus.fDidGameJustStart = FALSE; } }