Skip to content

Commit

Permalink
filter off the inactives
Browse files Browse the repository at this point in the history
  • Loading branch information
xAstroBoy committed Feb 12, 2024
1 parent 391751e commit 7399e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lc-hax/Scripts/Modules/ESPMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void RenderWhenMapLoads(Camera camera) {
this.RenderLabel("Entrance")
));

this.StoryLog.ForEach(renderer => this.RenderBounds(
this.StoryLog.Where(x => x.enabled).ForEach(renderer => this.RenderBounds(
camera,
renderer.bounds,
Helper.ExtraColors.BlueViolet,
Expand Down

0 comments on commit 7399e22

Please sign in to comment.