1
0
mirror of https://github.com/kepler155c/opus synced 2025-04-07 08:06:54 +00:00
This commit is contained in:
Kan18 2022-12-28 19:22:20 +04:00
parent f26f443b9d
commit 76b310d873

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