Skip to content

Commit

Permalink
Fix collection mismatch display
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsage committed Aug 20, 2024
1 parent ba94877 commit 562e6be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer/renderJS/main_ui_lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,8 +1012,8 @@ class StateManager {
window.main_IPC.dispatch('game')
} else {
// Different, ask confirmation
MA.byIdHTML('no_match_game_list', this.mapCollectionDropdown[window.state.flag.activeCollect])
MA.byIdHTML('no_match_ma_list', this.mapCollectionDropdown[currentList])
MA.byIdHTML('no_match_game_list', window.state.mapCollectionDropdown.get(window.state.flag.activeCollect))
MA.byIdHTML('no_match_ma_list', window.state.mapCollectionDropdown.get(currentList))
LEDLib.fastBlinkLED()
window.state.modal.mismatch.show()
}
Expand Down

0 comments on commit 562e6be

Please sign in to comment.