This commit is contained in:
2026-03-01 23:02:16 +01:00
parent c6dfe4bcb3
commit 3fee0c23af
2 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -263,7 +263,7 @@ foreach ($players as $p) {
const playerInfo = players.find(p => p.id == playerId);
if (playerInfo) {
slot.querySelector('.player-money').textContent = playerInfo.money + " 🪙";
slot.querySelector('.player-bet').textContent = "Mise: " + playerInfo.blind + " 🪙";
slot.querySelector('.player-bet').textContent = "Mise: " + player.blind + " 🪙";
}
});