Debugging print statements wieder entfernt

This commit is contained in:
Franziska Gerold 2025-12-19 05:48:54 +11:00
parent 6abdcc293f
commit 5dae606ce8

View File

@ -45,8 +45,6 @@ def command_spin():
print(f"Spin me... {used_direction}!")
rotate.value = 0 # damit jede Runde wieder bei Null anfängt, Werte würden allgemein vom -1 bis 1 reichen
result = rotate.wait_for_rotate(timeout=10)
print(rotate.value)
print(result)
if result and rotate.value > 0 and used_direction == "clockwise" or result and rotate.value < 0 and used_direction == "counter-clockwise":
print(success_message())
return 1
@ -67,7 +65,7 @@ def main():
print("Every correct action will give you a point.")
print("How many can you get?")
print("Let's go!")
list_command_choices =[command_spin] #command_tilt, command_spin, command_blind, command_scream]
list_command_choices =[command_spin, command_tilt, command_blind, command_scream]
while result != -1:
score += result # war zuerst ein paar Zeilen weiter unten, hat dann aber nach einer falschen Runde den Score erhöht
time.sleep(0.5)