1
0
mirror of https://codeberg.org/tenplus1/mobs_redo.git synced 2025-06-24 20:40:23 +02:00

fix on_pick_up example in api.txt

This commit is contained in:
tenplus1 2025-06-14 08:51:26 +01:00
parent 5077217497
commit 84377ee259

View File

@ -314,15 +314,15 @@ Pickup Items
'pick_up' table of itemstrings the mob will pick up.
'on_pick_up' function that will be called on item pickup - arguments are
(self, itemstring) and can return nil or a a modified itemstack e.g.
(self, itemtable) and can return nil or a a modified itemstack e.g.
on_pick_up = function(self, itemstring)
on_pick_up = function(self, itemtable)
local istack = ItemStack(entity.itemstring)
local istack = ItemStack(itemtable.itemstring)
print("-- took", istack:get_name())
istack:take_item(1)
istack:take_item()
return istack
end,