- [FIX] Ajustats alguns "edge cases" de algunes habitacions

- [FIX] Ajustada la diferència de cadència entre gotes
- [FIX] Ajustat el nivell de l'aigua, que fallaba l'ultima linia
This commit is contained in:
2026-03-24 13:58:07 +01:00
parent cee6ade851
commit c1f5f92dae
6 changed files with 10 additions and 3 deletions

View File

@@ -130,7 +130,7 @@ game = {
surf.source(game.back_buf)
for x=0,159 do
local water_level = math.sin(game.water_counter)*2
for y=88+water_level,103 do
for y=88+water_level,104 do
local pixel = surf.pixel(x,y)
surf.pixel(x,y,game.water_pal[pixel+1])
end