diff --git a/Server/Item.cs b/Server/Item.cs index 8b92feaec..8e93d4ce0 100644 --- a/Server/Item.cs +++ b/Server/Item.cs @@ -1475,7 +1475,7 @@ namespace Server public virtual bool StackWith( Mobile from, Item dropped, bool playSound ) { - if ( Stackable && dropped.Stackable && dropped.GetType() == GetType() && dropped.ItemID == ItemID && dropped.Hue == Hue && (dropped.Amount + Amount) <= 60000 ) + if ( dropped.Stackable && Stackable && dropped.GetType() == GetType() && dropped.ItemID == ItemID && dropped.Hue == Hue && dropped.Name == Name && (dropped.Amount + Amount) <= 60000 ) { if ( m_LootType != dropped.m_LootType ) m_LootType = LootType.Regular;