adjust not-command to use methods instead.

This commit is contained in:
Zontreck 2020-04-10 16:53:17 -07:00
parent a6c80b45a4
commit ac5c8e9fa0
2 changed files with 8 additions and 13 deletions

View file

@ -4,7 +4,7 @@ using System.Text;
namespace Bot.NonCommands
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public class NotCommand : Attribute
{
public NotCommand()