Incorrect prompt of duplicate storing score operations will show when the 'store score' button was clicked for the first time after a game ended. This bug is caused by a lack of setting back the value of boolean 'isStore' to false after it was set to true in the previous game. We handled this bug by adding the following code: if(!tetris.isGameOver||tetris.isNewGame()) isStore=false;
ohhh