-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
bugSomething isn't workingSomething isn't working
Description
In 3 P5 runs (of many more), it stopped splitting around Oblobbles.
In 2 of them, it didn't split the transition from Oblobbles to Sisters. In 1 of them, it didn't split the transition from Soul Master to Oblobbles.
So something is broken around Oblobbles. Of the 3 times it broke, 1 of them was going into Oblobbles, and 2 of them it was going out of Oblobbles.
Code in the WASM autosplitter:
Split::SoulMasterP => should_split(p.old.starts_with("GG_Soul_Master") && p.current.starts_with("GG_Oblobbles")),
Split::OblobblesP => should_split(p.old.starts_with("GG_Oblobbles") && p.current.starts_with("GG_Mantis_Lords")),Code in the Default autosplitter:
case SplitName.SoulMasterP: shouldSplit = sceneName.StartsWith("GG_Soul_Master") && nextScene.StartsWith("GG_Oblobbles"); break;
case SplitName.OblobblesP: shouldSplit = sceneName.StartsWith("GG_Oblobbles") && nextScene.StartsWith("GG_Mantis_Lords"); break;Is there another scene being loaded that might be confusing it like Oblobbles_boss or something that wouldn't fit under starts_with("GG_Oblobbles")?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working