Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

best game so far that I have played and don’t have high hopes for finding a better one.

I think I found a bug -> break; didn’t break my out of my loop (lava level). First I did a forever loop with a if/then/break check and it didn’t break out of the forever loop [maybe that was intentional that a forever loop doesn’t get broken out of..]

managed the lava level in 10 lines of code (including closing brackets) - made me think about maze solving bot code ;)

I am mixed on the low resolution render upscale, but otherwise the graphics did great for the game.

Going to put this in my ‘play more later’ pile.

Hey, thank you so much for playing and for taking the time to write this feedback!

You're right about the break statements not working properly. I think the problem is they only break out of their own scope regardless of whether that scope is a loop or not - so in this case it just breaks out of the if statement and stops there, instead of going all the way and breaking out of the loop.