Server timestamp possible fix.

master
Ben Burlingham 5 years ago
parent 8f1f4d1737
commit 470f0c9876
  1. 2
      server/ricochet.js

@ -304,7 +304,7 @@ Ricochet.prototype.msgSolve = function(message) {
clearTimeout(this.countdownTimer);
this.countdownTimer = setTimeout(this.onCountdownComplete.bind(this), this.countdownDuration * 1000);
this.countdownTimestamp = new Date().getTime();
this.countdownTimestamp = new Date().now();
this.state = STATE.COUNTDOWN;

Loading…
Cancel
Save