mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-13 02:38: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
|
public class ConfigCommands : NadekoSubmodule
|
||||||
{
|
{
|
||||||
private readonly BotConfigService _bss;
|
|
||||||
private readonly SelfService _selfService;
|
|
||||||
|
|
||||||
private readonly IEnumerable<IConfigService> _settingServices;
|
private readonly IEnumerable<IConfigService> _settingServices;
|
||||||
|
|
||||||
public ConfigCommands(BotConfigService bss, SelfService selfService, IEnumerable<IConfigService> settingServices)
|
public ConfigCommands(IEnumerable<IConfigService> settingServices)
|
||||||
{
|
{
|
||||||
_settingServices = 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]
|
[NadekoCommand, Aliases]
|
||||||
[OwnerOnly]
|
[OwnerOnly]
|
||||||
public async Task ConfigReload(string name)
|
public async Task ConfigReload(string name)
|
||||||
|
@@ -1050,9 +1050,6 @@ streamroleblacklist:
|
|||||||
streamrolewhitelist:
|
streamrolewhitelist:
|
||||||
- streamrolewhitelist
|
- streamrolewhitelist
|
||||||
- srwl
|
- srwl
|
||||||
botconfigedit:
|
|
||||||
- botconfigedit
|
|
||||||
- bce
|
|
||||||
config:
|
config:
|
||||||
- config
|
- config
|
||||||
- conf
|
- conf
|
||||||
|
@@ -1782,11 +1782,6 @@ streamrolewhitelist:
|
|||||||
args:
|
args:
|
||||||
- "add @Someone#1234"
|
- "add @Someone#1234"
|
||||||
- "rem @Someone#1234"
|
- "rem @Someone#1234"
|
||||||
botconfigedit:
|
|
||||||
desc: "Obsolete, use `{0}config` or `{0}config bot` instead"
|
|
||||||
args:
|
|
||||||
- "color.ok 00ff00"
|
|
||||||
- ""
|
|
||||||
config:
|
config:
|
||||||
desc: |-
|
desc: |-
|
||||||
Gets or sets configuration values.
|
Gets or sets configuration values.
|
||||||
|
Reference in New Issue
Block a user