Skip to content

Commit

Permalink
fix: Adds missing dupe ignore (#1815)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman committed Jun 2, 2024
1 parent df1db05 commit 04a15e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Projects/Server/Items/Item.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ public int SavedFlags
/// <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;
Expand Down Expand Up @@ -379,6 +380,7 @@ public bool Movable

public static int SecureFlag { get; set; }

[IgnoreDupe]
public bool IsLockedDown
{
get => GetTempFlag(LockedDownFlag);
Expand All @@ -389,6 +391,7 @@ public bool IsLockedDown
}
}

[IgnoreDupe]
public bool IsSecure
{
get => GetTempFlag(SecureFlag);
Expand Down

0 comments on commit 04a15e9

Please sign in to comment.