fix: Adds missing dupe ignore (#1815)

This commit is contained in:
Kamron Batman 2024-06-02 15:09:35 -07:00 committed by GitHub
parent df1db05054
commit 04a15e9620
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -267,6 +267,7 @@ public class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropertyListEnt
/// <summary>
/// The <see cref="Mobile" /> who is currently <see cref="Mobile.Holding">holding</see> this item.
/// </summary>
[IgnoreDupe]
public Mobile HeldBy
{
get => LookupCompactInfo()?.m_HeldBy;
@ -379,6 +380,7 @@ public class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropertyListEnt
public static int SecureFlag { get; set; }
[IgnoreDupe]
public bool IsLockedDown
{
get => GetTempFlag(LockedDownFlag);
@ -389,6 +391,7 @@ public class Item : IHued, IComparable<Item>, ISpawnable, IObjectPropertyListEnt
}
}
[IgnoreDupe]
public bool IsSecure
{
get => GetTempFlag(SecureFlag);