had 2 leave commands, removed 1
This commit is contained in:
parent
b9d60d9c0e
commit
1480161860
@ -890,21 +890,6 @@ namespace NadekoBot.Modules.Administration
|
|||||||
await e.Channel.SendMessage(":ok:").ConfigureAwait(false);
|
await e.Channel.SendMessage(":ok:").ConfigureAwait(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "leave")
|
|
||||||
.Description("Leaves a server with a supplied ID. | `.leave 493243292839`")
|
|
||||||
.Parameter("num", ParameterType.Required)
|
|
||||||
.AddCheck(SimpleCheckers.OwnerOnly())
|
|
||||||
.Do(async e =>
|
|
||||||
{
|
|
||||||
var srvr = NadekoBot.Client.Servers.Where(s => s.Id.ToString() == e.GetArg("num").Trim()).FirstOrDefault();
|
|
||||||
if (srvr == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await srvr.Leave().ConfigureAwait(false);
|
|
||||||
await e.Channel.SendMessage("`Done.`").ConfigureAwait(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "savechat")
|
cgb.CreateCommand(Prefix + "savechat")
|
||||||
.Description("Saves a number of messages to a text file and sends it to you. **Bot Owner Only** | `.chatsave 150`")
|
.Description("Saves a number of messages to a text file and sends it to you. **Bot Owner Only** | `.chatsave 150`")
|
||||||
.Parameter("cnt", ParameterType.Required)
|
.Parameter("cnt", ParameterType.Required)
|
||||||
|
Loading…
Reference in New Issue
Block a user