This commit is contained in:
2025-10-08 16:34:45 +02:00
parent d4d8249c8b
commit c70c2b73ad

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);
}