You can now use .ct #somechannel
This commit is contained in:
parent
812e9656a1
commit
9d7a0bff68
@ -240,15 +240,16 @@ namespace NadekoBot.Modules.Utility
|
|||||||
|
|
||||||
[NadekoCommand, Usage, Description, Aliases]
|
[NadekoCommand, Usage, Description, Aliases]
|
||||||
[RequireContext(ContextType.Guild)]
|
[RequireContext(ContextType.Guild)]
|
||||||
public async Task ChannelTopic()
|
public async Task ChannelTopic([Remainder]ITextChannel channel = null)
|
||||||
{
|
{
|
||||||
var channel = (ITextChannel)Context.Channel;
|
if (channel == null)
|
||||||
|
channel = (ITextChannel)Context.Channel;
|
||||||
|
|
||||||
var topic = channel.Topic;
|
var topic = channel.Topic;
|
||||||
if (string.IsNullOrWhiteSpace(topic))
|
if (string.IsNullOrWhiteSpace(topic))
|
||||||
await channel.SendErrorAsync("No topic set.");
|
await channel.SendErrorAsync("No topic set.").ConfigureAwait(false);
|
||||||
else
|
else
|
||||||
await channel.SendConfirmAsync("Channel topic", topic);
|
await channel.SendConfirmAsync("Channel topic", topic).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[NadekoCommand, Usage, Description, Aliases]
|
[NadekoCommand, Usage, Description, Aliases]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user