We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae7abc0 commit c824b1cCopy full SHA for c824b1c
2 files changed
osrs/position/map/mapdebugger.simba
@@ -342,7 +342,7 @@ begin
342
Self.ImageBox.OnImgMouseMove := @Self.ImgBoxMouseMove;
343
Self.ImageBox.OnImgMouseDown := @Self.ImgBoxMouseDown;
344
345
- Form.ShowModal();
+ form.ShowModal();
346
end;
347
348
(*
osrs/walker.simba
@@ -535,6 +535,12 @@ var
535
begin
536
Self.RedClicked := False;
537
538
+ if MSInterface.IsOpen() then
539
+ begin
540
+ Self.Walking := False;
541
+ Exit;
542
+ end;
543
+
544
if MainScreen.IsUpText('>') and not Self.ActionUpText.AnyContains('>') then
545
546
ChooseOption.Select('Cancel');
0 commit comments