borb
borb
Found another deprecation: `math.atan2` is deprecated and should be replaced with `math.atan` that accepts two arguments now. [Apparently this was already deprecated in Lua 5.3](https://www.lua.org/manual/5.3/manual.html#8.2) but somehow it still worked...
Note: Reverting to Lua 5.3 did not fix the error handling, it still only prints "error in error handling" in the current build 3002. I built the TIC-80 executable with...
I used your command, but `error in error handling` still appears with a fresh rebuild... 🤔
i tried to reproduce the issue with a fresh cart, but somehow i just don't seem to figure out what causes it. In EMUUROM, i just need to do this...
Gosh, I'm an idiot. No, it was not `require`, it was a mishap of my own doing. Namely, these lines: ```lua mode="demo debug" demo=mode:find("demo") debug=mode:find("debug") ``` I'm using this `mode`...