Auto Backup Settings

- added an RCON broadcast mode droplist, so backup processes can send messages via RCON using this mode.
This commit is contained in:
Brett Hewitson 2022-05-06 14:07:38 +10:00
parent 5be23f75ef
commit c1c303f32a
14 changed files with 120 additions and 16 deletions

View file

@ -2342,5 +2342,17 @@ namespace ServerManagerTool {
return ((string)(this["SaveGamesRelativePath"]));
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Broadcast")]
public string RCON_BackupMessageCommand {
get {
return ((string)(this["RCON_BackupMessageCommand"]));
}
set {
this["RCON_BackupMessageCommand"] = value;
}
}
}
}