milo fixes

This commit is contained in:
kepler155c
2018-11-19 17:18:02 -05:00
parent cc913bc10c
commit 4df1b30098
2 changed files with 7 additions and 2 deletions

View File

@@ -15,7 +15,8 @@ function ImportTask:cycle(context)
local function itemMatchesFilter(item)
if not entry.ignoreDamage and not entry.ignoreNbtHash then
return entry.filter[item.key]
local key = Milo:uniqueKey(item)
return entry.filter[key]
end
for key in pairs(entry.filter) do