We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d5b66 commit 67366d8Copy full SHA for 67366d8
osrs/interfaces/mainscreen/shop.simba
@@ -436,11 +436,3 @@ var
436
Global {ref}`TRSShop` variable.
437
*)
438
Shop: TRSShop;
439
-
440
441
-function TRSGameTabs.GetCurrent(): ERSGameTab; override;
442
-begin
443
- Result := inherited;
444
- if (Result = ERSGameTab.NONE) and Shop.IsOpen() then
445
- Result := ERSGameTab.INVENTORY;
446
-end;
osrs/overrides.simba
@@ -95,6 +95,8 @@ begin
95
96
if Bank.IsOpen() then Exit(ERSGameTab.INVENTORY);
97
98
+ if Shop.IsOpen() then Exit(ERSGameTab.INVENTORY);
99
+
100
if not HouseOptions.IsOpen() then Exit;
101
Result := ERSGameTab.OPTIONS;
102
if RSMouseZoom.SettingChecked then Exit;
0 commit comments