Added command groups, fixed several bugs

This commit is contained in:
RogueException
2016-06-27 06:56:24 -03:00
parent 6300a24eb5
commit 7bb890cbfe
9 changed files with 72 additions and 42 deletions

View File

@@ -15,7 +15,7 @@
public static bool HasStringPrefix(this IMessage msg, string str, ref int argPos)
{
var text = msg.RawText;
str = str + ' ';
//str = str + ' ';
if (text.StartsWith(str))
{
argPos = str.Length;