Difficulty_Mode #12

Open
Abed BRIDJA wants to merge 14 commits from bridja/TD3_DEV51_Bridja_Creuzet_Hochlaf:Dificulty_Mode into master
Showing only changes of commit c70c2b73ad - Show all commits

View File

@@ -50,7 +50,7 @@ public class Game {
boolean correct;
if(difficulty == Difficulty.HARD){
correct = this.allwords.get(0).VerifyLetter(caractere) || this.word.VerifyLetter(caractere);
correct = this.allwords.get(0).VerifyLetter(caractere) || this.allwords.get(1).VerifyLetter(caractere);
} else{
correct = word.VerifyLetter(caractere);
}