Fix team-chest blacklist

fix typo in the ipair loop for the blacklist table
This commit is contained in:
shivajiva101 2018-12-04 19:19:54 +00:00 committed by rubenwardy
parent 5bb2cff6c5
commit c94e34d911

View file

@ -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