diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-13 15:55:53 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-13 15:55:53 -0400 |
commit | d57515cb12028ca1bf76b3d22c3a41ea5874c82f (patch) | |
tree | 788aea964d2e46ba59ded946c86d51e714c7f16e /Lingo 2.asl | |
parent | fbecf3b199d94cf6e99c274fb913f6c5c5814990 (diff) | |
download | autosplitters-d57515cb12028ca1bf76b3d22c3a41ea5874c82f.tar.gz autosplitters-d57515cb12028ca1bf76b3d22c3a41ea5874c82f.tar.bz2 autosplitters-d57515cb12028ca1bf76b3d22c3a41ea5874c82f.zip |
[Lingo 2] Don't split on "free_ending"
Diffstat (limited to 'Lingo 2.asl')
-rw-r--r-- | Lingo 2.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lingo 2.asl b/Lingo 2.asl index 6818885..e0878d2 100644 --- a/Lingo 2.asl +++ b/Lingo 2.asl | |||
@@ -341,7 +341,7 @@ split | |||
341 | vars.log("Split on collected mastery: " + vars.latestCollectible.Current); | 341 | vars.log("Split on collected mastery: " + vars.latestCollectible.Current); |
342 | } | 342 | } |
343 | } | 343 | } |
344 | else if (vars.latestCollectible.Current.EndsWith("_ending")) | 344 | else if (vars.latestCollectible.Current.EndsWith("_ending") && vars.latestCollectible.Current != "free_ending") |
345 | { | 345 | { |
346 | if (settings["ends"]) | 346 | if (settings["ends"]) |
347 | { | 347 | { |