no message

This commit is contained in:
SilicaAndPina 2021-04-05 12:55:01 +12:00
parent e13e71c5c5
commit 8b41e540b1
2 changed files with 17 additions and 12 deletions

View file

@ -144,16 +144,23 @@ namespace HISP.Server
}
}
}
// Tack Shop Giveaway
if(totalMinutesElapsed % (60 * 3) == 0)
{
TackShopGiveawayEvent = new TackShopGiveaway();
TackShopGiveawayEvent.StartEvent();
}
// Real Time Riddle
if(totalMinutesElapsed % 30 == 0)
{
RiddleEvent = RealTimeRiddle.GetRandomRiddle();
RiddleEvent.StartEvent();
}
// Real Time Quiz
if(totalMinutesElapsed % 75 == 0)
{
}
if (totalMinutesElapsed % 60 == 0)
{