Fix team-chest blacklist
fix typo in the ipair loop for the blacklist table
This commit is contained in:
parent
5bb2cff6c5
commit
c94e34d911
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ for _, chest_color in pairs(colors) do
|
|||
return 0
|
||||
end
|
||||
|
||||
for itemstring in ipairs(blacklist) do
|
||||
for _, itemstring in ipairs(blacklist) do
|
||||
if stack:get_name() == itemstring then
|
||||
return 0
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue