Small typo mistake

This commit is contained in:
DrSmugleaf
2026-08-05 23:55:17 -07:00
parent bc82c592d2
commit c8d9f9d727
+1 -1
View File
@@ -230,7 +230,7 @@ public abstract partial class ToolshedCommand
var attributeDescription = impl.GetCustomAttribute<CommandDescriptionAttribute>()?.Description;
var attributeHelp = impl.GetCustomAttribute<CommandHelpAttribute>()?.Help;
if (!CommandImplementors.ContainsKey(key))
CommandImplementors[key] = new ToolshedCommandImplementor(subCmd, attributeDescription, attributeHelp this, Toolshed, Loc);
CommandImplementors[key] = new ToolshedCommandImplementor(subCmd, attributeDescription, attributeHelp, this, Toolshed, Loc);
}
}