Made sure all columns are used!

pull/830/head
Pete Favelle 2023-09-05 16:09:02 +01:00
rodzic 2f44e85431
commit 8c3a21ec1a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -56,7 +56,7 @@ def draw():
for y in range(picounicorn.get_height()):
for x in range(picounicorn.get_width()):
value = _heat[y][x]
value = _heat[y + 1][x]
if value < 0.15:
_set_pen(_fire_colours[0])
elif value < 0.25: