garbage_pieces_counter

This commit is contained in:
majkellll 2023-05-27 13:45:31 +02:00
parent f79fa2ee66
commit a1f2e4b298

View File

@ -42,7 +42,7 @@ def create_city() -> City:
city.add_street(s) city.add_street(s)
for t in trashcans: for t in trashcans:
for i in range(4): 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 garbage_pieces_counter = garbage_pieces_counter + 1
city.add_can(t) city.add_can(t)
for b in bumps: for b in bumps: