From b2cad5ac1472bb0eb534fe4350a6f1dc85c5e2bd Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Fri, 6 Dec 2024 18:37:44 +0100 Subject: [PATCH] bug: Don't reverse throwaway pile on flipping --- src/gamestate.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gamestate.cpp b/src/gamestate.cpp index c2e3081..e232f07 100644 --- a/src/gamestate.cpp +++ b/src/gamestate.cpp @@ -110,7 +110,6 @@ bool GameState::drawNextCard() { } m_drawPile = m_throwawayPile; m_throwawayPile.clear(); - std::reverse(m_drawPile.begin(), m_drawPile.end()); qDebug() << "> Draw pile empty, flipping throwaway pile"; }