- FIX: La colisió amb el mapa fallaba per la dreta

This commit is contained in:
2023-02-03 16:10:23 +01:00
parent bfe85d7eb3
commit 74563f74d6

View File

@@ -83,6 +83,6 @@ mapa={
end,
check_collision=function(x,y)
return mget(x,y) > 16
return mget(x,y) > 16 or mget(x+1,y) > 16
end
}