fix folding player

This commit is contained in:
2026-03-01 22:44:40 +01:00
parent 424f59864a
commit c6dfe4bcb3
+1 -1
View File
@@ -178,7 +178,7 @@ foreach ($players as $p) {
let formData = new FormData();
formData.append('game_id', actualGameID);
formData.append('action', 'fold'); // On envoie une action spécifique pour se coucher
fetch('change_player.php', {
fetch('fold_player.php', {
method: 'POST',
body: formData
})