fix: Adds missing dupe ignore (#1815)
This commit is contained in:
parent
df1db05054
commit
04a15e9620
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue