Fix craft trigger not taking stack count into account

This commit is contained in:
rubenwardy
2016-08-01 17:05:02 +01:00
parent c79f13a4a3
commit 48bb2e9656
2 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ function awards.run_trigger_callbacks(player, data, trigger, table_func)
end
end
function awards.increment_item_counter(data, field, itemname)
function awards.increment_item_counter(data, field, itemname, count)
local name_split = string.split(itemname, ":")
if #name_split ~= 2 then
return false
@ -91,7 +91,7 @@ function awards.increment_item_counter(data, field, itemname)
awards.tbv(data[field], mod)
awards.tbv(data[field][mod], item, 0)
data[field][mod][item] = data[field][mod][item] + 1
data[field][mod][item] = data[field][mod][item] + (count or 1)
return true
else
return false