feat: websockets

This commit is contained in:
2022-12-20 12:20:52 -08:00
parent ab85578ccf
commit a5a67963be
24 changed files with 276 additions and 69 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ public sealed class AuthorizationHandler: IHandler
writer.WriteString(playerName);
var sendData = writer.ToArray();
context.Connection.ReliableChannel.Send(sendData);
context.Connection.Reliable.Send(sendData);
_logger.Trace($"Player {context.Connection.Id}|{context.LobbyPlayer.Name} authorized");
}