1
0
mirror of https://github.com/kepler155c/opus synced 2025-11-12 05:23:01 +00:00
This commit is contained in:
kepler155c@gmail.com
2019-04-25 14:44:36 -04:00
parent 0e3cb15356
commit f4bcd61116
5 changed files with 10 additions and 5 deletions

View File

@@ -286,7 +286,7 @@ end)
local function isBlacklisted(b)
if b and state.blacklist then
for k, v in pairs(state.blacklist) do
for _, v in pairs(state.blacklist) do
if b.name:find(v) then
return true
end