From 04a15e96209be0950ded8f49787325b992ce38d3 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sun, 2 Jun 2024 15:09:35 -0700 Subject: [PATCH] fix: Adds missing dupe ignore (#1815) --- Projects/Server/Items/Item.cs | 3 +++ 1 file changed, 3 insertions(+) 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);