From db5684b692203b9a5f645b9cc4d9ed498a12e7d1 Mon Sep 17 00:00:00 2001 From: Shane Madden Date: Sat, 14 Sep 2024 10:32:37 -0600 Subject: [PATCH] improve comment --- src/constants/seasonal.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/constants/seasonal.rs b/src/constants/seasonal.rs index 36229a74..4de79b78 100644 --- a/src/constants/seasonal.rs +++ b/src/constants/seasonal.rs @@ -130,7 +130,8 @@ pub mod season_1 { // match on those exact values first SCORE_CYCLE_CRISIS_START => ScoreCycleState::Normal, SCORE_CYCLE_BONUS_START => ScoreCycleState::Normal, - // then on the remaining ranges + // then on the remaining ranges - these are flipped from normal in s7, which is + // not currently open sourced SCORE_CYCLE_CRISIS_START..SCORE_CYCLE_CRISIS_END => ScoreCycleState::Bonus, SCORE_CYCLE_BONUS_START..SCORE_CYCLE_BONUS_END => ScoreCycleState::Crisis, _ => ScoreCycleState::Normal,