Tags are always a single word, parse them as such

This commit is contained in:
Deukhoofd 2018-11-05 15:22:47 +01:00
parent 0d538ad703
commit dd177fa012
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 1 additions and 4 deletions

View File

@ -235,10 +235,7 @@ namespace DeukBot4.MessageHandlers.CommandHandler
return;
}
var key = cmd.Parameters[0].AsString();
cmd.SendMessageAsync(serverTags.GetTag(key));
cmd.SendMessageAsync(serverTags.GetTag(first));
}
public static async Task GetTags(CommandRequest cmd)