fix some explosion logic from last commits

This commit is contained in:
bgkillas 2025-02-09 10:09:32 -05:00
parent 2cd5c30857
commit 6de1cd2278
4 changed files with 11 additions and 4 deletions

View file

@ -1,6 +1,7 @@
# List of available hooks:
- `ctx.hook.on_world_initialized()` - called on OnWorldInitialized.
- `ctx.hook.on_new_entity(ent)` - called on new alive entity.
- `ctx.hook.on_world_update()` - called on OnWorldPreUpdate.
- `ctx.hook.on_world_update_client()` - called on OnWorldPreUpdate, but only on clients.
- `ctx.hook.on_world_update_host()` - called on OnWorldPreUpdate, but only on host.
@ -11,4 +12,4 @@
- `ctx.hook.on_draw_debug_window(imgui)`
- `ctx.hook.on_local_player_polymorphed(currently_polymorphed)`
- `ctx.hook.on_client_polymorphed(peer_id, player_data)`
- `ctx.hook.on_late_init()` - called on OnModPostInit.
- `ctx.hook.on_late_init()` - called on OnModPostInit.