Maybe fix stuff

This commit is contained in:
Bluzume 2021-11-05 03:20:02 -04:00
parent 98fc5aede3
commit 369989ad59

View file

@ -87,9 +87,11 @@ namespace HISP.Server
public static void CreateClient(object sender, SocketAsyncEventArgs e)
{
restart:;
Socket eSocket = e.AcceptSocket;
e.AcceptSocket = null;
GameServer.ServerSocket.AcceptAsync(e);
if (!GameServer.ServerSocket.AcceptAsync(e))
goto restart;
new GameClient(eSocket);
}