Explorar el Código

Adds timestamp to moves

Nikatlas hace 6 años
padre
commit
019ddd0da3
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      services/matchmaking/randomFree.js

+ 1 - 0
services/matchmaking/randomFree.js

@@ -56,6 +56,7 @@ class randomFree {
                     p2.emit('joinGame', matchInfo.playerTwoState);
 
                     const broadcast = (data) => {
+                    	data.timestamp = new Date().getTime();
                     	nsp.in(channel).emit('move', data);	
                     };
                     p1.on('broadcast', broadcast);