Incorrect code in demo
gustavostuff opened this issue · 1 comments
gustavostuff commented
Line 133 in the demo currently is:
if pcall(string.char, code) code > 0 then
but it should be:
if pcall(string.char, code) and code > 0 then
hryx commented
Good catch — fixed. 👓