fix nil StrConv on save

This commit is contained in:
wish
2022-11-01 10:49:28 +11:00
parent 96993f62bd
commit 4a7cde77ea
2 changed files with 3 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ func NewSession(server *Server, conn net.Conn) *Session {
rawConn: conn,
cryptConn: network.NewCryptConn(conn),
sendPackets: make(chan packet, 20),
clientContext: &clientctx.ClientContext{},
clientContext: &clientctx.ClientContext{}, // Unused
sessionStart: Time_Current_Adjusted().Unix(),
stageMoveStack: stringstack.New(),
}