Remove debug output. Oops.

This commit is contained in:
Charles Peyrat 2021-01-21 03:28:46 +01:00
parent bcfde6fa49
commit ebca28930c
1 changed files with 0 additions and 1 deletions

View File

@ -499,7 +499,6 @@ class Generator:
while tries < self.params["loop_tries"] and \
loops < self.params["loop_max"]:
tries += 1
print(tries)
y, x = randint(0, height - 1), randint(0, width - 1)
loops += self.add_loop(level, y, x)