Skip to content

Commit

Permalink
Initialize TransTearWithGrub pointers before trans
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKnauth committed Feb 20, 2024
1 parent 147a366 commit 06a891d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/splits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3521,6 +3521,7 @@ pub fn continuous_splits(s: &Split, p: &Process, g: &GameManagerFinder, pds: &mu
Split::CrystalHeart => should_split(g.has_super_dash(p).is_some_and(|s| s)),
Split::IsmasTear => should_split(g.has_acid_armour(p).is_some_and(|a| a)),
Split::TransTear => { pds.has_acid_armour(p, g); should_split(false) },
Split::TransTearWithGrub => { pds.has_acid_armour(p, g); pds.grub_waterways_isma(p, g); should_split(false) },
Split::MenuIsmasTear => { pds.has_acid_armour(p, g); should_split(false) },
// endregion: Movement Abilities
// region: Nail Arts
Expand Down

0 comments on commit 06a891d

Please sign in to comment.