Default minpermissions on command groups to int.MaxValue

This commit is contained in:
RogueException
2015-11-04 23:09:44 -04:00
parent 5d548dca33
commit 00eb1522cd

View File

@@ -26,6 +26,7 @@ namespace Discord.Commands
_parent = parent; _parent = parent;
_text = text; _text = text;
_items = new Dictionary<string, CommandMap>(); _items = new Dictionary<string, CommandMap>();
_minPermission = int.MaxValue;
_isHidden = true; _isHidden = true;
} }