mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
increased max events for event api to 100
added GameInfo to EventInfo class make sure score gets updated properly after authentication
This commit is contained in:
@ -462,17 +462,8 @@ namespace IW4MAdmin.Application
|
||||
queuedEvent.Target.DelayedEvents.Enqueue(queuedEvent);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (queuedEvent.Type == GameEvent.EventType.Connect)
|
||||
{
|
||||
// we don't want to block here to due to needing event completion in the addplayer method
|
||||
processEvent(queuedEvent);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
await processEvent(queuedEvent);
|
||||
}
|
||||
// for delayed events, they're added after the connect event so it should work out
|
||||
await processEvent(queuedEvent);
|
||||
}
|
||||
|
||||
// signal that all events have been processed
|
||||
|
Reference in New Issue
Block a user