From 01a4141ff41a10ffaa17c8fa595c10104aaaa45c Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Thu, 14 Nov 2019 11:54:59 -0500 Subject: [PATCH] fixed new season menu - use 'R' and 'P' instead of '1' and '2' --- src/Mtlstats/Menu.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mtlstats/Menu.hs b/src/Mtlstats/Menu.hs index 51c5029..cfad6b8 100644 --- a/src/Mtlstats/Menu.hs +++ b/src/Mtlstats/Menu.hs @@ -119,11 +119,11 @@ mainMenu = Menu "*** MAIN MENU ***" True -- | The new season menu newSeasonMenu :: Menu () newSeasonMenu = Menu "*** SEASON TYPE ***" () - [ MenuItem '1' "Regular Season" $ modify + [ MenuItem 'R' "Regular Season" $ modify $ resetYtd . resetStandings . startNewGame - , MenuItem '2' "Playoffs" $ modify + , MenuItem 'P' "Playoffs" $ modify $ resetStandings . startNewGame ]