Added bot_perm support to medusa system

This commit is contained in:
Kwoth
2023-01-15 04:07:04 +01:00
parent e71708f5e8
commit 737bbb8ec1
5 changed files with 55 additions and 13 deletions

View File

@@ -3,12 +3,11 @@
namespace Nadeko.Snake;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public sealed class user_permAttribute : Attribute
public sealed class user_permAttribute : MedusaPermAttribute
{
public GuildPermission? GuildPerm { get; }
public ChannelPermission? ChannelPerm { get; }
public user_permAttribute(GuildPermission perm)
{
GuildPerm = perm;
@@ -21,4 +20,3 @@ public sealed class user_permAttribute : Attribute
GuildPerm = null;
}
}