mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Add tool callback
This commit is contained in:
parent
4e5760a541
commit
34e0a0ca0f
2 changed files with 21 additions and 7 deletions
|
@ -1980,6 +1980,15 @@ Item definition (register_node, register_craftitem, register_tool)
|
|||
eg. itemstack:take_item(); return itemstack
|
||||
^ Otherwise, the function is free to do what it wants.
|
||||
^ The default functions handle regular use cases.
|
||||
after_use = func(itemstack, user, node, digparams),
|
||||
^ default: nil
|
||||
^ If defined, should return an itemstack and will be called instead of
|
||||
wearing out the tool. If returns nil, does nothing.
|
||||
If after_use doesn't exist, it is the same as:
|
||||
function(itemstack, user, node, digparams)
|
||||
itemstack:add_wear(digparams.wear)
|
||||
return itemstack
|
||||
end
|
||||
}
|
||||
|
||||
Tile definition:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue