.schn command added (set channel name)
This commit is contained in:
parent
5b15732527
commit
cca04ed2a2
@ -511,6 +511,20 @@ namespace NadekoBot.Modules.Administration
|
|||||||
await e.Channel.SendMessage(":ok: **New channel topic set.**").ConfigureAwait(false);
|
await e.Channel.SendMessage(":ok: **New channel topic set.**").ConfigureAwait(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cgb.CreateCommand(Prefix + "schn").Alias(Prefix + "setchannelname")
|
||||||
|
.Alias(Prefix + "topic")
|
||||||
|
.Description("Changed the name of the current channel.")
|
||||||
|
.AddCheck(SimpleCheckers.ManageChannels())
|
||||||
|
.Parameter("name", ParameterType.Unparsed)
|
||||||
|
.Do(async e =>
|
||||||
|
{
|
||||||
|
var name = e.GetArg("name");
|
||||||
|
if (string.IsNullOrWhiteSpace(name))
|
||||||
|
return;
|
||||||
|
await e.Channel.Edit(name: name).ConfigureAwait(false);
|
||||||
|
await e.Channel.SendMessage(":ok: **New channel name set.**").ConfigureAwait(false);
|
||||||
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "uid").Alias(Prefix + "userid")
|
cgb.CreateCommand(Prefix + "uid").Alias(Prefix + "userid")
|
||||||
.Description("Shows user ID.")
|
.Description("Shows user ID.")
|
||||||
.Parameter("user", ParameterType.Unparsed)
|
.Parameter("user", ParameterType.Unparsed)
|
||||||
|
Loading…
Reference in New Issue
Block a user