fix undeclared variable

This commit is contained in:
Alexander Minges 2020-05-06 19:44:51 +02:00
parent 2407529a00
commit 96e858644b

View file

@ -366,7 +366,7 @@ function mcl_explosions.explode(pos, strength, info, puncher)
if not sphere_shapes[radius] then
sphere_shapes[radius] = compute_sphere_rays(radius)
end
shape = sphere_shapes[radius]
local shape = sphere_shapes[radius]
trace_explode(pos, strength, shape, radius, (info and info.drop_chance) or 1 / strength, info.fire == true, puncher)