mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-13 10:43:20 +01:00
19d662dee4
Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4630 Reviewed-by: teknomunk <teknomunk@protonmail.com> Co-authored-by: Mikita Wiśniewski <rudzik8@protonmail.com> Co-committed-by: Mikita Wiśniewski <rudzik8@protonmail.com>
15 lines
461 B
Markdown
15 lines
461 B
Markdown
# mcl_damage
|
|
|
|
This mod is intended to overall minetest's native damage system, to provide a better integration between features that deals with entities' health.
|
|
|
|
WARNING: Not using it inside your mods may cause strange bugs (using the native damage system may cause conflicts with this system).
|
|
|
|
## Callbacks
|
|
|
|
To modify the amount of damage dealt by something:
|
|
|
|
```lua
|
|
--obj: an ObjectRef
|
|
mcl_damage.register_modifier(function(obj, damage, reason)
|
|
end, 0)
|
|
```
|