This commit is contained in:
Kan18
2022-12-28 19:22:20 +04:00
committed by MayaTheShy
parent e3ea71f5a3
commit 73616676dc

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