This commit is contained in:
Kan18 2022-12-28 19:22:20 +04:00
parent f26f443b9d
commit 76b310d873
1 changed files with 1 additions and 1 deletions

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