Adds gateway support including SingalR

This commit is contained in:
Kamron Batman 2026-03-30 18:52:28 -07:00
parent c207c2c19f
commit fde85a5f7c
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A
13 changed files with 692 additions and 2 deletions

View file

@ -384,6 +384,13 @@ public static class IncomingAccountPackets
GameServer.GameServerLoginEvent(e);
if (e.Deferred)
{
// Login is being handled asynchronously (e.g., gateway validation).
// The handler that set Deferred is responsible for completing the login.
return;
}
if (e.Accepted)
{
state.CityInfo = e.CityInfo;