From 058e6d6c26dc1ca580d558d77ebb5bbedcabba77 Mon Sep 17 00:00:00 2001 From: teknomunk Date: Sun, 1 Sep 2024 20:53:46 -0500 Subject: [PATCH] Fix typo _ -> . --- mods/ITEMS/vl_projectile/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/vl_projectile/api.md b/mods/ITEMS/vl_projectile/api.md index c8afce567..ed2f4484c 100644 --- a/mods/ITEMS/vl_projectile/api.md +++ b/mods/ITEMS/vl_projectile/api.md @@ -18,7 +18,7 @@ Arguments: that returns dynamic damange group information. * `allow_punching`: will the projectile punch entities it collides with. May be a function of type `function(projectile, entity_def, projectile_def, obj)`. * `behaviors`: a list of behavior callbacks that define the projectile's behavior. This mod provides the following - behaviors: `vl_projectiles.collides_with_solids`, `vl_projectiles.collides_with_entities` and `vl_projectiles_raycast_collides_with_entities` + behaviors: `vl_projectiles.collides_with_solids`, `vl_projectiles.collides_with_entities` and `vl_projectiles.raycast_collides_with_entities` * `sounds`: sounds for this projectile. All fields take a table with three parameters corresponding to the three parameters for `minetest.play_sound()`. Supported sounds are: * `on_collision`: played when no other more specific sound is defined. May be a function of type `function(projectile, entity_def, projectile_def, type, ...)`