Browse Source

win_first bugfix

Neccor 4 years ago
parent
commit
7b19c5f4af
1 changed files with 7 additions and 8 deletions
  1. 7
    8
      win_first.py

+ 7
- 8
win_first.py View File

@@ -148,16 +148,15 @@ def win_loop(win_rounds):
148 148
 			print(f"Kein Ergebniss gefunden")
149 149
 			time.sleep(1)
150 150
 
151
-
152
-# Niederlage
153
-loose_rounds = 0
154
-while loose_rounds <= 30:
155
-	loose_loop(loose_rounds)
156
-	loose_rounds += 1
157
-
158 151
 # Siege
159 152
 win_rounds = 0
160 153
 while win_rounds <= 30:
161 154
 	print("winorund loop")
162 155
 	win_loop(win_rounds)
163
-	win_rounds += 1
156
+	win_rounds += 1
157
+
158
+# Niederlage
159
+loose_rounds = 0
160
+while loose_rounds <= 30:
161
+	loose_loop(loose_rounds)
162
+	loose_rounds += 1

Loading…
Cancel
Save