more error fix?

This commit is contained in:
Beric Bearnson 2024-10-24 21:42:46 -06:00
parent 3d42de7b18
commit 3ed3e311f7

View File

@ -57,9 +57,10 @@ func LobbyListen() {
go func() {
client, msgOut, err := l.InitialConnectionHandler(conn)
if err != nil {
fmt.Println("what?")
conn.Write(msgOut)
} else {
fmt.Println("new client", client)
fmt.Println("new client", client, err)
_, err = conn.Write(msgOut)
if err != nil {
slog.Debug("error writing to new player... disconnecting")