From 2f7977d144c5a136d0866defb46c929280ebcb7f Mon Sep 17 00:00:00 2001 From: Zeffuro Date: Mon, 29 Dec 2025 09:02:57 +0100 Subject: [PATCH] Cleanup --- AetherBags/Inventory/InventoryContextState.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AetherBags/Inventory/InventoryContextState.cs b/AetherBags/Inventory/InventoryContextState.cs index f81a6ef..88c8a6b 100644 --- a/AetherBags/Inventory/InventoryContextState.cs +++ b/AetherBags/Inventory/InventoryContextState.cs @@ -15,8 +15,8 @@ public static unsafe class InventoryContextState public static void RefreshMaps() { - EligibleSlots. Clear(); - VisualLocationMap. Clear(); + EligibleSlots.Clear(); + VisualLocationMap.Clear(); var sorter = ItemOrderModule.Instance()->InventorySorter; if (sorter == null) return; @@ -31,7 +31,7 @@ public static unsafe class InventoryContextState for (int displayIdx = 0; displayIdx < 140; displayIdx++) { - var entry = sorter->Items[displayIdx]. Value; + var entry = sorter->Items[displayIdx].Value; if (entry == null) continue; int realPage = entry->Page; @@ -46,7 +46,7 @@ public static unsafe class InventoryContextState if (hasContext && invArray != null) { var itemData = invArray->Items[displayIdx]; - if (itemData. IconId == 0) continue; + if (itemData.IconId == 0) continue; bool eligible = itemData.ItemFlags.MirageFlag == 0; if (eligible)