Change whitelist injection into blacklist injection

This commit is contained in:
james7132
2017-02-10 22:02:18 +00:00
parent f0b4c24e82
commit f1df412341
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ using System;
namespace Discord.Commands {
[AttributeUsage(AttributeTargets.Property)]
public class InjectAttribute : Attribute {
public class DontInjectAttribute : Attribute {
}
}