diff --git a/Robust.Shared/Toolshed/ToolshedCommand.cs b/Robust.Shared/Toolshed/ToolshedCommand.cs index 94ab2ae02e..2f80dd1583 100644 --- a/Robust.Shared/Toolshed/ToolshedCommand.cs +++ b/Robust.Shared/Toolshed/ToolshedCommand.cs @@ -230,7 +230,7 @@ public abstract partial class ToolshedCommand var attributeDescription = impl.GetCustomAttribute()?.Description; var attributeHelp = impl.GetCustomAttribute()?.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); } }