Skip to content

Commit

Permalink
Fixed west arcade and sewer generators
Browse files Browse the repository at this point in the history
  • Loading branch information
NintwnDude879 committed Oct 9, 2023
1 parent 74c5e9a commit d9f9934
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions FNaFSBAutoSplitter.asl
Original file line number Diff line number Diff line change
Expand Up @@ -768,9 +768,7 @@ init {
|| zLower > vars.watchers["pos"].Current.Z || vars.watchers["pos"].Current.Z > zUpper) return false;

Vector3f oPos = vars.watchers["pos"].Old, cPos = vars.watchers["pos"].Current, target = new Vector3f(x, y, 0);
return oPos.DistanceXY(target) <= 200f
&& cPos.DistanceXY(target) > 200f
&& vars.CompletedSplits(name);
return ((oPos.DistanceXY(target) <= 200f && cPos.DistanceXY(target) > 200f) && vars.CompletedSplits.Add(name));
});

vars.checkTimeNoBool = (Func<int, int, bool>)((hour, minute)
Expand Down

0 comments on commit d9f9934

Please sign in to comment.