forked from VoxeLibre/VoxeLibre
Don't crash when name == nil
This commit is contained in:
parent
c7e43e31d4
commit
95228500a9
|
@ -1833,7 +1833,7 @@ end
|
||||||
function mcl_potions.give_effect_by_level(name, object, level, duration, no_particles)
|
function mcl_potions.give_effect_by_level(name, object, level, duration, no_particles)
|
||||||
if level == 0 then return false end
|
if level == 0 then return false end
|
||||||
if not registered_effects[name] then
|
if not registered_effects[name] then
|
||||||
minetest.log("warning", "[mcl_potions] Trying to give unknown effect "..name)
|
minetest.log("warning", "[mcl_potions] Trying to give unknown effect "..tostring(name))
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
if not registered_effects[name].uses_factor then
|
if not registered_effects[name].uses_factor then
|
||||||
|
|
Loading…
Reference in New Issue