I encountered a problem with the special characters on my font and can’t fix it so far. I have it so that a user can input alt-sequence codes to get a special character. This was working just last week, but now it’s broken. It displays the tilde as if it’s not covered in the font.
I seem to remember updating to Version 1.2.127 soon after pushing my most recent build, so I didn’t find out until a few days later.
if self.alt == true then
local seq = string.match(action.text,"%d+")
if seq ~= nil then
-- if string.len(self.alt_seq) > 0 then
-- local sp_char = string.len(self.chat)
-- self.chat = string.sub(self.chat, 1, sp_char-1)
-- end
self.alt_seq = self.alt_seq .. seq
self.chat = self.chat .. string.char(tonumber(self.alt_seq))
end
...
I’ve tried multiple fonts each with “All Chars” enabled, and can see that the font contains them, yet the problem persists.