- bugfix: If the merc arrives with the helicopter at night (defined in the ja2_options.ini) it was daytime in tactical

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@1854 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2008-02-26 19:41:45 +00:00
parent cb36b3db6d
commit 9649811083
+8
View File
@@ -1115,6 +1115,14 @@ void InitHelicopterEntranceByMercs( void )
// Update clock ahead from STARTING_TIME to make mercs arrive!
WarpGameTime( gGameExternalOptions.iFirstArrivalDelay, WARPTIME_PROCESS_EVENTS_NORMALLY );
// WANNE: fix HOT DAY in night at arrival by night. Maybe gubEnvLightValue=12 is no good value..
// Maybe we should add a switch-case for different night times and set gubEnvLightValue to differnt values
if( gGameExternalOptions.iFirstArrivalDelay < 21599)
{
gubEnvLightValue = 12;
LightSetBaseLevel(gubEnvLightValue);
}
AirRaidDef.sSectorX = 9;
AirRaidDef.sSectorY = 1;
AirRaidDef.sSectorZ = 0;