This commit is contained in:
Rémi Heredero 2021-11-21 16:48:55 +01:00
parent c49a63f843
commit a75f5e7640
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -73,18 +73,18 @@ public class WordManager {
switch (level) {
case 'e':
nbrLettreMin = 0;
nbrLettreMax = 6;
nbrLettreMin = 4;
nbrLettreMax = 8; //5
break;
case 'm':
nbrLettreMin = 7;
nbrLettreMax = 9;
nbrLettreMin = 9;
nbrLettreMax = 16; //8
break;
case 'd':
nbrLettreMin = 10;
nbrLettreMax = Integer.MAX_VALUE;
nbrLettreMin = 16; //9
nbrLettreMax = 25;
break;
default: