From d1611716b9e22893cbaae2feae9de6b6347f5ec0 Mon Sep 17 00:00:00 2001 From: AsY!um- <377468+AsYlum-@users.noreply.github.com> Date: Fri, 1 May 2026 17:42:50 +0200 Subject: [PATCH 1/2] Fix WSC multi import flag settings. --- Ultima/MultiComponentList.cs | 8 ++++---- UoFiddler/DynamicItems.xml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Ultima/MultiComponentList.cs b/Ultima/MultiComponentList.cs index d183990..f3b4138 100644 --- a/Ultima/MultiComponentList.cs +++ b/Ultima/MultiComponentList.cs @@ -435,7 +435,7 @@ public MultiComponentList(string fileName, Multis.ImportType type) var tempItem = new MultiTileEntry { ItemId = 0xFFFF, - Flags = 0, + Flags = 1, Unk1 = 0 }; @@ -448,7 +448,7 @@ public MultiComponentList(string fileName, Multis.ImportType type) { if (DynamicItemIds != null && DynamicItemIds.Contains(tempItem.ItemId)) { - tempItem.Flags = 1; + tempItem.Flags = 0; } SortedTiles[itemCount] = tempItem; @@ -456,7 +456,7 @@ public MultiComponentList(string fileName, Multis.ImportType type) } tempItem.ItemId = 0xFFFF; - tempItem.Flags = 0; + tempItem.Flags = 1; } else if (line.StartsWith("ID")) { @@ -510,7 +510,7 @@ public MultiComponentList(string fileName, Multis.ImportType type) { if (DynamicItemIds?.Contains(tempItem.ItemId) == true) { - tempItem.Flags = 1; + tempItem.Flags = 0; } SortedTiles[itemCount] = tempItem; diff --git a/UoFiddler/DynamicItems.xml b/UoFiddler/DynamicItems.xml index aee32ef..01a7ce1 100644 --- a/UoFiddler/DynamicItems.xml +++ b/UoFiddler/DynamicItems.xml @@ -1,6 +1,6 @@