1
0
Fork 0

Correction de la boucle infinie

This commit is contained in:
doto 2024-03-16 16:56:04 +01:00
parent bd20933b69
commit f8a2eb0e5b
1 changed files with 4 additions and 1 deletions

View File

@ -318,7 +318,10 @@ class Cubito(arcade.Window):
if token_type == "right":
cubito.right()
if token_type == "function":
self.cubito(function=True)
if function:
return
else:
self.cubito(function=True)