Fix eat trigger

This commit is contained in:
GreenXenith 2018-12-16 17:03:03 -08:00 committed by Beha
parent b2cc63dbd8
commit 0ef385c514
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ minetest.register_on_craft(function(itemstack, player, old_craft_grid, craft_inv
local itemname = itemstack:get_name()
itemname = minetest.registered_aliases[itemname] or itemname
awards.notify_craft(player, itemname, itemstack:get_count())
awards.notify_eat(player, itemname)
end)