mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
add time for isle trading game
This commit is contained in:
parent
375731ada9
commit
bbc5d3c899
1 changed files with 6 additions and 1 deletions
|
@ -144,6 +144,11 @@ namespace HISP.Server
|
||||||
isle.Weather = isle.SelectRandomWeather();
|
isle.Weather = isle.SelectRandomWeather();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
// Isle Card Trading Game
|
||||||
|
if(totalMinutesElapsed % (60 + 55) == 0)
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
// Water Balloon Game
|
// Water Balloon Game
|
||||||
if(totalMinutesElapsed % (60 * 2) == 0)
|
if(totalMinutesElapsed % (60 * 2) == 0)
|
||||||
|
@ -163,7 +168,7 @@ namespace HISP.Server
|
||||||
RiddleEvent.StartEvent();
|
RiddleEvent.StartEvent();
|
||||||
}
|
}
|
||||||
// Real Time Quiz
|
// Real Time Quiz
|
||||||
if(totalMinutesElapsed % 75 == 0)
|
if(totalMinutesElapsed % (60 + 15) == 0)
|
||||||
{
|
{
|
||||||
QuizEvent = new RealTimeQuiz();
|
QuizEvent = new RealTimeQuiz();
|
||||||
QuizEvent.StartEvent();
|
QuizEvent.StartEvent();
|
||||||
|
|
Loading…
Add table
Reference in a new issue