Skip to content

Commit

Permalink
fix: minor fix for walker v2 scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed Sep 3, 2024
1 parent 1117817 commit f61a3e6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions osr/basescript.simba
Original file line number Diff line number Diff line change
Expand Up @@ -559,10 +559,12 @@ var
begin
for i := 0 to 5 do
begin
Result := Bank.WalkOpen();
if ScriptWalker = nil then
Result := Banks.WalkOpen()
else
Result := Bank.WalkOpen();

if Result then
Exit;
if Result then Break;
end;
//override me to add more stuff.
end;
Expand Down

0 comments on commit f61a3e6

Please sign in to comment.