Skip to content

Commit

Permalink
fix(FairyRing): tweaks to fix some odd behaviour Flight found out
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed Jan 26, 2024
1 parent 16eb444 commit 5d2e2e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions optional/interfaces/mainscreen/fairyring.simba
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,8 @@ begin

if code = 'BKS' then
code := 'Zanaris';
if not RSObjects.FairyRing.SelectOption([code, 'onfigure']) then

if not RSObjects.FairyRing.WalkHover() or not ChooseOption.Select([code, 'onfigure']) then
Exit;

Minimap.WaitMoving();
Expand Down Expand Up @@ -936,7 +937,7 @@ begin
if code = 'BKS' then
code := 'Zanaris';

if not RSObjects.FairyRing.WalkSelectOption([code.Upper(), 'onfigure']) then
if not RSObjects.FairyRing.WalkHover() or not ChooseOption.Select([code, 'onfigure']) then
Exit;

Minimap.WaitMoving();
Expand Down
3 changes: 2 additions & 1 deletion osr/walker/objects/rsobjects.simba
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,8 @@ begin
Finder.Colors := [
CTS2(4089424, 10, 0.14, 0.19),
CTS2(4807548, 17, 0.07, 0.21),
CTS2(14476264, 4, 0.36, 0.64)
CTS2(14476264, 4, 0.36, 0.64),
CTS2(10989501, 8, 0.59, 0.91)
];
end;
end;
Expand Down

0 comments on commit 5d2e2e8

Please sign in to comment.