From 10dffadae7ecd3f423f716820cf1d9e86bd53b11 Mon Sep 17 00:00:00 2001 From: Rico <97664519+Rico-Rodriguez@users.noreply.github.com> Date: Sat, 14 Feb 2026 13:57:21 -1000 Subject: [PATCH] Enhance gear layout checks for specific items Add checks for 'Nothing' and 'Anything' in gear layout. --- osrs/interfaces/handlers/gear_layout.simba | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/osrs/interfaces/handlers/gear_layout.simba b/osrs/interfaces/handlers/gear_layout.simba index 6d422a69..4633a62c 100644 --- a/osrs/interfaces/handlers/gear_layout.simba +++ b/osrs/interfaces/handlers/gear_layout.simba @@ -197,6 +197,11 @@ begin begin if Self.Equipped[slot] = Self.Gear.Items[slot] then Continue; + + case Self.Gear.Items[slot] of + 'Nothing', 'Anything': Continue; + end; + if Inventory.Items.Contains(Self.Gear.Items[slot]) then Continue;