diff --git a/TShockAPI/Utils.cs b/TShockAPI/Utils.cs index 1b49a4f9..745d4a20 100644 --- a/TShockAPI/Utils.cs +++ b/TShockAPI/Utils.cs @@ -372,7 +372,7 @@ namespace TShockAPI if (item.name.ToLower() == nameLower) return new List {item}; if (item.name.ToLower().StartsWith(nameLower)) - found.Add(item); + found.Add((Item)item.Clone()); } return found; }