fixed nouns not being properly checked in database

This commit is contained in:
UndeadMaelys
2022-05-07 10:20:33 +02:00
parent e775b7d6a2
commit cd6deac0b4
3 changed files with 12 additions and 12 deletions

View File

@@ -169,7 +169,7 @@ end
function in_dictionary(str)
for i=1, #words do
if words[i][1] == str then return true end
if strip_symbols(words[i][1]) == str then return true end
end
end