enlever le bonnus REVERSE en 1vIA

This commit is contained in:
CoCo_Sol 2024-01-07 11:38:48 +01:00
parent df4b694155
commit abcdd9b26b

View file

@ -180,8 +180,9 @@ class Bonus(Enum):
REVERSE = 3
@staticmethod
def aleatoire():
type = random.randint(0, 3)
def aleatoire(world: World):
max = 3 if world[GameMode] == GameMode.ONE else 2
type = random.randint(0, max)
match type:
case 0:
return Bonus.MULTI