- comment out extra sql pull
- addressing ignored error
This commit is contained in:
2025-06-19 15:17:38 -04:00
parent 433e4302c2
commit fc109338a6
2 changed files with 8 additions and 5 deletions

View File

@@ -46,6 +46,9 @@ func New(name string) (*Client, error) {
var p []byte
_, err = base64.StdEncoding.Decode(p, []byte(srv.Password))
if err != nil {
return nil, err
}
//connect to game server
cli := mcr.NewClient(srv.Server, mcr.WithPort(srv.Port))