Discord Bot Changes

- Have added All Profiles Alias global settings
- Have changed the discord bot to handle the All Profile alias to performs commands against all profiles in the channel.
This commit is contained in:
Brett Hewitson 2022-04-14 21:06:14 +10:00
parent fc658b04dd
commit 1aa8d79108
19 changed files with 1227 additions and 1026 deletions

View file

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