This commit is contained in:
@@ -65,7 +65,13 @@ func main() {
|
|||||||
|
|
||||||
events.On(events.Message, handleCommands)
|
events.On(events.Message, handleCommands)
|
||||||
|
|
||||||
client = rcon.NewSession("localhost", rconPort, rconPassword)
|
rconHost := "localhost"
|
||||||
|
|
||||||
|
if envHost := os.Getenv("RCON_HOST"); envHost != "" {
|
||||||
|
rconHost = envHost
|
||||||
|
}
|
||||||
|
|
||||||
|
client = rcon.NewSession(rconHost, rconPort, rconPassword)
|
||||||
|
|
||||||
client.Debug = debug
|
client.Debug = debug
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user