code cleanup

This commit is contained in:
janschoenherr
2014-04-16 10:54:51 +02:00
parent 542208d94a
commit 3b86903e65
+1 -5
View File
@@ -28,11 +28,7 @@ GameManager.prototype.keepPlaying = function () {
// Return true if the game is lost, or has won and the user hasn't kept playing
GameManager.prototype.isGameTerminated = function () {
if (this.over || (this.won && !this.keepPlaying)) {
return true;
} else {
return false;
}
return this.over || (this.won && !this.keepPlaying);
};
// Set up the game