Compare commits

...

1 Commits
v2.2 ... master

Author SHA1 Message Date
1630bdf9a4
Fix glamour set UI breaking when in instanced content 2024-12-23 21:09:43 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -431,6 +431,9 @@ internal sealed class GlamourSetter : Window, IDisposable
foreach (var inventoryType in _inventoryTypes)
{
var inventoryContainer = inventoryManager->GetInventoryContainer(inventoryType);
if (inventoryContainer == null)
continue;
for (int i = 0; i < inventoryContainer->Size; ++i)
{
InventoryItem* item = inventoryContainer->GetInventorySlot(i);

View File

@ -1,6 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
<PropertyGroup>
<Version>2.2</Version>
<Version>2.3</Version>
<OutputPath>dist</OutputPath>
</PropertyGroup>