From c8d9f9d7277bdcb5b140ae622b8377f236aabb92 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Wed, 5 Aug 2026 23:55:17 -0700 Subject: [PATCH] Small typo mistake --- Robust.Shared/Toolshed/ToolshedCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }