mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-09 00:29:33 +01:00
Correct damage_groups return (ObjectRef:get_velocity() returns a vector not the required number)
This commit is contained in:
parent
902393926f
commit
326ad65158
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ local firework_entity = {
|
|||
damages_players = true,
|
||||
maximum_time = 60,
|
||||
damage_groups = function(self)
|
||||
return { fleshy = self.object:get_velocity() }
|
||||
return { fleshy = vector.length(self.object:get_velocity()) }
|
||||
end,
|
||||
tracer_texture = "mobs_mc_arrow_particle.png",
|
||||
behaviors = {
|
||||
|
|
Loading…
Reference in a new issue