disable user analysis on game end

This commit is contained in:
Thibault Duplessis 2014-12-25 15:25:37 +01:00
parent ddcec998f7
commit 118a25a910

View file

@ -62,7 +62,7 @@ function hasAi(data) {
}
function userAnalysable(data) {
return !data.clock || !isPlayerPlaying(data);
return !replayable(data) && (!data.clock || !isPlayerPlaying(data));
}
function setOnGame(data, color, onGame) {