diff --git a/Projects/Server/Items/Item.cs b/Projects/Server/Items/Item.cs index e6d0cd771..6ce65cd36 100644 --- a/Projects/Server/Items/Item.cs +++ b/Projects/Server/Items/Item.cs @@ -267,6 +267,7 @@ public class Item : IHued, IComparable, ISpawnable, IObjectPropertyListEnt /// /// The who is currently holding this item. /// + [IgnoreDupe] public Mobile HeldBy { get => LookupCompactInfo()?.m_HeldBy; @@ -379,6 +380,7 @@ public class Item : IHued, IComparable, ISpawnable, IObjectPropertyListEnt public static int SecureFlag { get; set; } + [IgnoreDupe] public bool IsLockedDown { get => GetTempFlag(LockedDownFlag); @@ -389,6 +391,7 @@ public class Item : IHued, IComparable, ISpawnable, IObjectPropertyListEnt } } + [IgnoreDupe] public bool IsSecure { get => GetTempFlag(SecureFlag);