Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Ultima/MultiComponentList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ public MultiComponentList(string fileName, Multis.ImportType type)
var tempItem = new MultiTileEntry
{
ItemId = 0xFFFF,
Flags = 0,
Flags = 1,
Unk1 = 0
};

Expand All @@ -448,15 +448,15 @@ public MultiComponentList(string fileName, Multis.ImportType type)
{
if (DynamicItemIds != null && DynamicItemIds.Contains(tempItem.ItemId))
{
tempItem.Flags = 1;
tempItem.Flags = 0;
}

SortedTiles[itemCount] = tempItem;
++itemCount;
}

tempItem.ItemId = 0xFFFF;
tempItem.Flags = 0;
tempItem.Flags = 1;
}
else if (line.StartsWith("ID"))
{
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion UoFiddler/DynamicItems.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Items listed here are flagged as dynamic (Flags=1) when importing from WSC format.
Items listed here are flagged as dynamic (Flags=0) when importing from WSC format.
Dynamic items spawn as interactive world objects when a house deed is placed
(e.g. doors that can be opened, functional crafting stations, placeable signs).

Expand Down
5 changes: 4 additions & 1 deletion UoFiddler/Forms/AboutBoxForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@
</resheader>
<data name="richTextBox1.Text" xml:space="preserve">
<value>Version 4.19.3
- Fix dynamic flag when importing from WSC - value was flipped after recent changes.

Version 4.19.3
- Improve cliloc editing.
* Add "Next free" button when adding new cliloc entry.
* Add entry will now use current selection when searching for next free number or will seach starting from the number user inputs in the text box.
* Add entry will now use current selection when searching for next free number or will search starting from the number user inputs in the text box.
* Add tiledata import preview form.
- Update extract/pack all logic in UopPacker plugin.

Expand Down
6 changes: 3 additions & 3 deletions UoFiddler/UoFiddler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<AssemblyTitle>UoFiddler</AssemblyTitle>
<Product>UoFiddler</Product>
<Copyright>Copyright © 2026</Copyright>
<AssemblyVersion>4.19.3</AssemblyVersion>
<FileVersion>4.19.3</FileVersion>
<Version>4.19.3</Version>
<AssemblyVersion>4.19.4</AssemblyVersion>
<FileVersion>4.19.4</FileVersion>
<Version>4.19.4</Version>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
<PropertyGroup>
Expand Down