bug: Don't reverse throwaway pile on flipping

This commit is contained in:
ItsDrike 2024-12-06 18:37:44 +01:00
parent 2b44a39ee8
commit b2cad5ac14
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -110,7 +110,6 @@ bool GameState::drawNextCard() {
} }
m_drawPile = m_throwawayPile; m_drawPile = m_throwawayPile;
m_throwawayPile.clear(); m_throwawayPile.clear();
std::reverse(m_drawPile.begin(), m_drawPile.end());
qDebug() << "> Draw pile empty, flipping throwaway pile"; qDebug() << "> Draw pile empty, flipping throwaway pile";
} }