Skip to content

Commit

Permalink
Fix live splitting for Ambrose Island movet to H2 (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
ladamalina authored Sep 14, 2024
1 parent 699d96f commit 3191f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/livesplit/liveSplitManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -615,9 +615,9 @@ function getCampaignMissions(
case 1:
return trilogy.slice(0, 6)
case 2:
return trilogy.slice(6, 14)
return trilogy.slice(6, 15)
case 3:
return trilogy.slice(14, trilogy.length)
return trilogy.slice(15, trilogy.length)
default:
return trilogy
}
Expand Down

0 comments on commit 3191f05

Please sign in to comment.