Skip to content

Commit

Permalink
fix: compatibility with latest libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed May 30, 2024
1 parent 3ed8a96 commit 963f000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wasp_ardougne_knights.simba
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ var
begin
p := [6006, 3315];
Self.Knight.SetupCoordinates([p]);
Self.Knight.DotFilter.Setup(BANK_POLYGON, True);
Self.Knight.DotFilter.SetupBounds(BANK_POLYGON, True);
Self.Knight.ShapeArray.SetShape([1, 1, 6]);
Self.Knight.SetupUpText(['Knight', 'of', 'Ardougne']);
Self.Knight.Finder.Colors += CTS2(10620793, 19, 0.22, 0.31);
Expand Down
2 changes: 1 addition & 1 deletion wasp_woodcutter.simba
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ begin
for p in Self.RSTree.Coordinates do
begin
RSGroundItems.BirdNest.Coordinates += p;
RSGroundItems.BirdNest.DotFilter.Setup([p.X, p.Y, 16], True);
RSGroundItems.BirdNest.DotFilter.SetupCircle([p.X, p.Y, 16], True);
end;
RSGroundItems.BirdNest.ShapeArray.SetShape([1, 1, 1]);
RSGroundItems.BirdNest.Filter.Walker := True;
Expand Down

0 comments on commit 963f000

Please sign in to comment.