Skip to content

Commit

Permalink
Split EnterBeastDen
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKnauth committed Feb 21, 2024
1 parent de7df84 commit b1c1bd3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/splits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2962,6 +2962,10 @@ pub enum Split {
///
/// Splits when absorbing essence from Galien
GalienEssence,
/// Beast Den (Transition)
///
/// Splits on transition into Beast Den
EnterBeastDen,
/// Trap Bench (Event)
///
/// Splits when getting the trap bench in Beasts Den
Expand Down Expand Up @@ -3403,6 +3407,7 @@ pub fn transition_splits(s: &Split, p: &Pair<&str>, prc: &Process, g: &GameManag
// region: Deepnest
Split::EnterDeepnest => should_split(starts_with_any(p.current, DEEPNEST_ENTRY_SCENES) && p.current != p.old),
Split::EnterNosk => should_split(p.current.starts_with("Deepnest_32") && p.current != p.old),
Split::EnterBeastDen => should_split(p.current.starts_with("Deepnest_Spider_Town") && p.current != p.old),
// endregion: Deepnest
// region: Godhome
Split::EnterGodhome => should_split(p.current.starts_with("GG_Atrium") && p.current != p.old),
Expand Down

0 comments on commit b1c1bd3

Please sign in to comment.