From 3e44020b72981324c08b4095029c2b3218e2f3db Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 13 Aug 2026 19:17:43 -0700 Subject: [PATCH] Apply suggestion from @kamronbatman --- Projects/Server/Items/Item.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Projects/Server/Items/Item.cs b/Projects/Server/Items/Item.cs index 204872e90..889be4619 100644 --- a/Projects/Server/Items/Item.cs +++ b/Projects/Server/Items/Item.cs @@ -2344,9 +2344,6 @@ public partial class Item : IHued, IComparable, ISpawnable, IObjectPropert UpdateDecayRegistration(); } - // PlayerConstructed is part of stack identity. A merge keeps the receiving stack's value, so - // without this term the outcome depends on which side was dropped onto which: one order - // launders the flag onto items that never earned it, the other erases it from items that did. public virtual bool CanStackWith(Item dropped) => dropped.Stackable && Stackable && dropped.GetType() == GetType() &&