Skip to content

Commit

Permalink
Correctif bug réponse "sur le gong"
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.ydkjs.eu@251 474cd47a-f06f-4151-8730-396d9296b85e
  • Loading branch information
Mwyann committed Jun 19, 2020
1 parent 941bd07 commit 6160d41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion html/js/ModeQuestion.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ ModeQuestion.prototype.start = function() {
};

var pressKey = function(choice) {
if (thisMode.currentAns == -1) return false; // Fin de partie, appui non autorisé
if (!choice) return false; // Si on se voit envoyer 0 à cause d'un clic sur un joueur à keycode 0
if ((screwer != 0) && (screwee <= 0)) { // Vicieuse en cours de viciage
if (screwee == 0) return false; // Pas encore de choix disponible
Expand Down Expand Up @@ -511,7 +512,7 @@ ModeQuestion.prototype.start = function() {
clearTimeout(thisMode.timerTimeout);
thisMode.timerTimeout = 0;
this.delay(200,function() {
thisMode.currentAns = -1;
thisMode.currentAns = -1; // TODO Comment synchroniser la fin de la question en même temps pour tous les joueurs ?
this.reset();
thisMode.Timer.reset();
anim.play('TimerTimeOut');
Expand Down

0 comments on commit 6160d41

Please sign in to comment.