Fix: Updating the pot when the winner is known.

This commit is contained in:
Julian Kropff
2026-05-16 22:38:14 +02:00
parent a8344989c0
commit 7af3a6cf4c
@@ -645,6 +645,12 @@ public class CasinoGameController {
updateGameInfo(s); updateGameInfo(s);
highlightDealer(s); highlightDealer(s);
updateTaskbar(s); updateTaskbar(s);
if (s.pot != lastPot) {
lastPot = s.pot;
renderPot(s.pot);
}
clearActiveTurnHighlights(); clearActiveTurnHighlights();
announceLocalWinIfNeeded(s); announceLocalWinIfNeeded(s);
finishGameUiLoop(); finishGameUiLoop();