add time for isle trading game

This commit is contained in:
SilicaAndPina 2021-04-21 22:40:35 +12:00
parent 375731ada9
commit bbc5d3c899

View file

@ -144,6 +144,11 @@ namespace HISP.Server
isle.Weather = isle.SelectRandomWeather();
}
}
}
// Isle Card Trading Game
if(totalMinutesElapsed % (60 + 55) == 0)
{
}
// Water Balloon Game
if(totalMinutesElapsed % (60 * 2) == 0)
@ -163,7 +168,7 @@ namespace HISP.Server
RiddleEvent.StartEvent();
}
// Real Time Quiz
if(totalMinutesElapsed % 75 == 0)
if(totalMinutesElapsed % (60 + 15) == 0)
{
QuizEvent = new RealTimeQuiz();
QuizEvent.StartEvent();