speed bumps

This commit is contained in:
Wiktor Szynaka 2023-05-13 19:41:19 +02:00
parent af42c84186
commit f0d6001efa

View File

@ -67,7 +67,7 @@ def create_trashcans() -> List[GarbageCan]:
def create_speed_bumps() -> List[SpeedBump]: def create_speed_bumps() -> List[SpeedBump]:
bumps = [] bumps = []
bumps.append(SpeedBump((10, 10))) bumps.append(SpeedBump((10, 9)))
bumps.append(SpeedBump((12, 16))) bumps.append(SpeedBump((12, 16)))
return bumps return bumps