54 lines
1.9 KiB
C#
54 lines
1.9 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using System.Threading.Tasks;
|
|
using NadekoBot.Common.Attributes;
|
|
|
|
namespace NadekoBot.Modules.Administration
|
|
{
|
|
public partial class Administration
|
|
{
|
|
[Group]
|
|
public class PrefixCommands : NadekoSubmodule
|
|
{
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[Priority(1)]
|
|
public new async Task Prefix()
|
|
{
|
|
await ReplyConfirmLocalized("prefix_current", Format.Code(_cmdHandler.GetPrefix(Context.Guild))).ConfigureAwait(false);
|
|
return;
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequireUserPermission(GuildPermission.Administrator)]
|
|
[Priority(0)]
|
|
public new async Task Prefix([Remainder]string prefix)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(prefix))
|
|
return;
|
|
|
|
var oldPrefix = base.Prefix;
|
|
var newPrefix = _cmdHandler.SetPrefix(Context.Guild, prefix);
|
|
|
|
await ReplyConfirmLocalized("prefix_new", Format.Code(oldPrefix), Format.Code(newPrefix)).ConfigureAwait(false);
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[OwnerOnly]
|
|
public async Task DefPrefix([Remainder]string prefix = null)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(prefix))
|
|
{
|
|
await ReplyConfirmLocalized("defprefix_current", _cmdHandler.DefaultPrefix).ConfigureAwait(false);
|
|
return;
|
|
}
|
|
|
|
var oldPrefix = _cmdHandler.DefaultPrefix;
|
|
var newPrefix = _cmdHandler.SetDefaultPrefix(prefix);
|
|
|
|
await ReplyConfirmLocalized("defprefix_new", Format.Code(oldPrefix), Format.Code(newPrefix)).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|
|
}
|