permission fix for delete custom reactions
This commit is contained in:
parent
2d3aa08882
commit
61b3254f6d
@ -60,6 +60,7 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
.Description("Deletes a custome reaction with given name (and index)")
|
.Description("Deletes a custome reaction with given name (and index)")
|
||||||
.Parameter("name", ParameterType.Required)
|
.Parameter("name", ParameterType.Required)
|
||||||
.Parameter("index", ParameterType.Optional)
|
.Parameter("index", ParameterType.Optional)
|
||||||
|
.AddCheck(SimpleCheckers.OwnerOnly())
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
var name = e.GetArg("name")?.Trim();
|
var name = e.GetArg("name")?.Trim();
|
||||||
|
@ -300,7 +300,8 @@ namespace NadekoBot.Modules.Conversations
|
|||||||
await e.Channel.SendMessage(construct).ConfigureAwait(false);
|
await e.Channel.SendMessage(construct).ConfigureAwait(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand("av").Alias("avatar")
|
cgb.CreateCommand("av")
|
||||||
|
.Alias("avatar")
|
||||||
.Parameter("mention", ParameterType.Required)
|
.Parameter("mention", ParameterType.Required)
|
||||||
.Description("Shows a mentioned person's avatar.\n**Usage**: ~av @X")
|
.Description("Shows a mentioned person's avatar.\n**Usage**: ~av @X")
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
|
@ -7,6 +7,7 @@ using NadekoBot.Classes.JSONModels;
|
|||||||
using NadekoBot.Modules.Administration;
|
using NadekoBot.Modules.Administration;
|
||||||
using NadekoBot.Modules.ClashOfClans;
|
using NadekoBot.Modules.ClashOfClans;
|
||||||
using NadekoBot.Modules.Conversations;
|
using NadekoBot.Modules.Conversations;
|
||||||
|
using NadekoBot.Modules.CustomReactions;
|
||||||
using NadekoBot.Modules.Gambling;
|
using NadekoBot.Modules.Gambling;
|
||||||
using NadekoBot.Modules.Games;
|
using NadekoBot.Modules.Games;
|
||||||
using NadekoBot.Modules.Games.Commands;
|
using NadekoBot.Modules.Games.Commands;
|
||||||
@ -26,7 +27,6 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using NadekoBot.Modules.CustomReactions;
|
|
||||||
|
|
||||||
namespace NadekoBot
|
namespace NadekoBot
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user