garbage_pieces_counter

This commit is contained in:
majkellll 2023-05-27 13:45:31 +02:00
parent f79fa2ee66
commit a1f2e4b298
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def create_city() -> City:
city.add_street(s)
for t in trashcans:
for i in range(4):
t.add_garbage(garbage_pieces[0])
t.add_garbage(garbage_pieces[garbage_pieces_counter])
garbage_pieces_counter = garbage_pieces_counter + 1
city.add_can(t)
for b in bumps: