Skip to content

Commit 99953a4

Browse files
committed
améliorations sur la rejouabilité
1 parent 01b1136 commit 99953a4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

python/Maze.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,11 @@ def move_left(liste):
552552
mazebase = listreplay[i][0]
553553
update_size_screen(x, y)
554554
liste = string_to_maze(mazebase)
555+
if len(liste) == 61 and x == 10:
556+
difficult = 3
557+
buff = liste
558+
liste, playerloc = reduce_maze(buff)
559+
xMax, yMax = 61, 121
555560
play, blockR, saveonce, t0once, t1once = [True] * 5
556561
replay = False
557562

0 commit comments

Comments
 (0)