mirror of
https://codeberg.org/tenplus1/mobs_redo.git
synced 2025-06-25 13:00:21 +02:00
fix on_pick_up example in api.txt
This commit is contained in:
parent
5077217497
commit
84377ee259
8
api.txt
8
api.txt
@ -314,15 +314,15 @@ Pickup Items
|
|||||||
|
|
||||||
'pick_up' table of itemstrings the mob will pick up.
|
'pick_up' table of itemstrings the mob will pick up.
|
||||||
'on_pick_up' function that will be called on item pickup - arguments are
|
'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())
|
print("-- took", istack:get_name())
|
||||||
|
|
||||||
istack:take_item(1)
|
istack:take_item()
|
||||||
|
|
||||||
return istack
|
return istack
|
||||||
end,
|
end,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user