Skip to content

Sometimes doesn't split on Oblobbles in P5 #97

@AlexKnauth

Description

@AlexKnauth

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")?

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions