diff --git a/JetKarmaBot/VerbCommandRouter.cs b/JetKarmaBot/VerbCommandRouter.cs
index 425991f..8bfe55c 100644
--- a/JetKarmaBot/VerbCommandRouter.cs
+++ b/JetKarmaBot/VerbCommandRouter.cs
@@ -67,7 +67,7 @@ namespace JetKarmaBot
{
build = build + Prefix + names[i] + "\n";
}
- build += Prefix + names[names.Count - 1] + " " + string.Join(" ", c.Arguments.Select(x => (!x.Required ? "[" : "") + x.Name + (!x.Required ? "]" : ""))) + " " + getLocalizedCMDDesc(c, loc) + "";
+ build += "" + Prefix + names[names.Count - 1] + " " + string.Join(" ", c.Arguments.Select(x => (!x.Required ? "[" : "") + x.Name + (!x.Required ? "]" : ""))) + " " + getLocalizedCMDDesc(c, loc) + "";
pieces.Add(build);
}
return string.Join("\n", pieces);