diff --git a/src/Discord.Net.Commands/Info/ModuleInfo.cs b/src/Discord.Net.Commands/Info/ModuleInfo.cs index 2a6439c02..bff9d9a56 100644 --- a/src/Discord.Net.Commands/Info/ModuleInfo.cs +++ b/src/Discord.Net.Commands/Info/ModuleInfo.cs @@ -65,8 +65,8 @@ namespace Discord.Commands result = level.Aliases.Permutate(result, (second, first) => first + " " + second); } - if (result == null) //there were no aliases; default to an empty list - result = new List(); + if (result == null) //there were no aliases; default to an empty string alias + result = new List { "" }; return result; }