This commit is contained in:
2024-11-04 17:46:11 +00:00
parent a7702c8050
commit 05ee3f1912
2 changed files with 5 additions and 4 deletions

View File

@@ -68,8 +68,7 @@ func main() {
}
func connectRcon(host string, port int, password string) (*q3rcon.Rcon, error) {
rcon, err := q3rcon.New(
host, port, password)
rcon, err := q3rcon.New(host, port, password)
if err != nil {
return nil, err
}