diff options
-rw-r--r-- | Userland/Games/Spider/Game.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Games/Spider/Game.cpp b/Userland/Games/Spider/Game.cpp index 4a0a3997ae..52d4756008 100644 --- a/Userland/Games/Spider/Game.cpp +++ b/Userland/Games/Spider/Game.cpp @@ -75,6 +75,9 @@ void Game::setup(Mode mode) while (!deck.is_empty()) m_new_deck.append(deck.take(get_random_uniform(deck.size()))); + m_focused_stack = nullptr; + m_focused_cards.clear(); + m_new_game_animation = true; start_timer(s_timer_interval_ms); update(); |