I then added, like several times before, this code in control.lua:
Code: Select all
if item.valid and item.stack.valid then
if string.find(item.stack.name,"alien-ore-1") then
table.insert(artifactList, {name = item.stack.name, count = item.stack.count})
item.destroy()
end
end
My first thought was, maybe it is because it is an ore, but dismissed it right away, because I already search successfully for "artifafact-ores" from Alien Loot Economy.
I also tried to search only for "alien-ore" - but no success.
Right now I'm out of ideas, so I hope someone can hint me the right way.
Thanks!