From c47ecadace10789c92e92ee62ba30df3edc208dc Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sat, 24 May 2025 12:15:49 -0700 Subject: [PATCH] fix: Fixes item child properties in the wrong order when overridden (#2196) --- Projects/Server/Items/Item.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Projects/Server/Items/Item.cs b/Projects/Server/Items/Item.cs index 9726e1d34..9703fc55f 100644 --- a/Projects/Server/Items/Item.cs +++ b/Projects/Server/Items/Item.cs @@ -792,6 +792,7 @@ public class Item : IHued, IComparable, ISpawnable, IObjectPropertyListEnt public virtual void GetProperties(IPropertyList list) { AddNameProperties(list); + AppendChildNameProperties(list); } [IgnoreDupe] @@ -1943,8 +1944,6 @@ public class Item : IHued, IComparable, ISpawnable, IObjectPropertyListEnt { AddQuestItemProperty(list); } - - AppendChildNameProperties(list); } ///