mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 20:41:11 +01:00
12 lines
372 B
Markdown
12 lines
372 B
Markdown
# mcl_damage
|
|
This mod provide damage handling.
|
|
|
|
## mcl_damage.register_modifier(func, priority)
|
|
Register damage modifier.
|
|
* func: function, called with (obj, damage, reason)
|
|
|
|
This function can modify damage, based on mcl reason.
|
|
|
|
* priority: int, define call order of registered functions
|
|
|
|
You should make use higher values for important or most used functions.
|