mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Removed bce
This commit is contained in:
6
src/NadekoBot/Modules/Gambling/TestGamblingService.cs
Normal file
6
src/NadekoBot/Modules/Gambling/TestGamblingService.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace NadekoBot.Modules.Gambling;
|
||||
|
||||
public class TestGamblingService
|
||||
{
|
||||
|
||||
}
|
@@ -6,29 +6,13 @@ public partial class Utility
|
||||
{
|
||||
public class ConfigCommands : NadekoSubmodule
|
||||
{
|
||||
private readonly BotConfigService _bss;
|
||||
private readonly SelfService _selfService;
|
||||
|
||||
private readonly IEnumerable<IConfigService> _settingServices;
|
||||
|
||||
public ConfigCommands(BotConfigService bss, SelfService selfService, IEnumerable<IConfigService> settingServices)
|
||||
public ConfigCommands(IEnumerable<IConfigService> settingServices)
|
||||
{
|
||||
_settingServices = settingServices;
|
||||
_bss = bss;
|
||||
_selfService = selfService;
|
||||
}
|
||||
|
||||
[NadekoCommand, Aliases]
|
||||
[OwnerOnly]
|
||||
public Task BotConfigEdit()
|
||||
=> Config("bot");
|
||||
|
||||
[NadekoCommand, Aliases]
|
||||
[Priority(0)]
|
||||
[OwnerOnly]
|
||||
public Task BotConfigEdit(string prop, [Leftover] string newValue = null)
|
||||
=> Config("bot", prop, newValue);
|
||||
|
||||
[NadekoCommand, Aliases]
|
||||
[OwnerOnly]
|
||||
public async Task ConfigReload(string name)
|
||||
|
@@ -1050,9 +1050,6 @@ streamroleblacklist:
|
||||
streamrolewhitelist:
|
||||
- streamrolewhitelist
|
||||
- srwl
|
||||
botconfigedit:
|
||||
- botconfigedit
|
||||
- bce
|
||||
config:
|
||||
- config
|
||||
- conf
|
||||
|
@@ -1782,11 +1782,6 @@ streamrolewhitelist:
|
||||
args:
|
||||
- "add @Someone#1234"
|
||||
- "rem @Someone#1234"
|
||||
botconfigedit:
|
||||
desc: "Obsolete, use `{0}config` or `{0}config bot` instead"
|
||||
args:
|
||||
- "color.ok 00ff00"
|
||||
- ""
|
||||
config:
|
||||
desc: |-
|
||||
Gets or sets configuration values.
|
||||
|
Reference in New Issue
Block a user