Adjusted starting date of the hardcore mission

:freezingface:
This commit is contained in:
SumrakDZN 2020-11-27 19:17:35 +01:00
parent c6bbfe9311
commit 5976b12a60

View File

@ -39,10 +39,10 @@ void main()
int year, month, day, hour, minute;
GetGame().GetWorld().GetDate( year, month, day, hour, minute );
if ( ( month < 11 ) || ( month >= 12 ) )
if ( month < 12 )
{
year = 2011;
month = 11;
month = 12;
day = 1;
GetGame().GetWorld().SetDate( year, month, day, hour, minute );