Convert crash to a warning

This commit is contained in:
teknomunk 2024-05-28 19:05:00 -05:00
parent 067ad7b78b
commit c7e43e31d4
1 changed files with 4 additions and 0 deletions

View File

@ -1832,6 +1832,10 @@ end
function mcl_potions.give_effect_by_level(name, object, level, duration, no_particles)
if level == 0 then return false end
if not registered_effects[name] then
minetest.log("warning", "[mcl_potions] Trying to give unknown effect "..name)
return false
end
if not registered_effects[name].uses_factor then
return mcl_potions.give_effect(name, object, 0, duration, no_particles)
end