Many changes #62

Merged
Kan18 merged 9 commits from Kan18/develop-1.8 into develop-1.8 2026-03-22 11:58:42 -04:00
Showing only changes of commit 76b310d873 - Show all commits

View File

@@ -4,7 +4,7 @@ local acceptableCharacters = {}
for c = 0, 127 do
local char = string.char(c)
-- exclude potentially ambiguous characters
if char:match("[1-9a-zA-Z]") and char:match("[^OIl]") end
if char:match("[1-9a-zA-Z]") and char:match("[^OIl]") then
table.insert(acceptableCharacters, char)
end
end