diff --git a/wasp_ardougne_knights.simba b/wasp_ardougne_knights.simba index e2cef05..5abe938 100644 --- a/wasp_ardougne_knights.simba +++ b/wasp_ardougne_knights.simba @@ -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); diff --git a/wasp_woodcutter.simba b/wasp_woodcutter.simba index fee3917..e7bfea5 100644 --- a/wasp_woodcutter.simba +++ b/wasp_woodcutter.simba @@ -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;