Fix fire resistance bad protect against magmablock

This commit is contained in:
Wuzzy 2020-11-12 16:43:12 +01:00
parent 124274053d
commit 9365493696
2 changed files with 11 additions and 0 deletions

View File

@ -96,6 +96,9 @@ minetest.register_node("mcl_nether:magma", {
sounds = mcl_sounds.node_sound_stone_defaults(),
-- From walkover mod
on_walk_over = function(loc, nodeiamon, player)
if minetest.global_exists("mcl_potions") and mcl_potions.player_has_effect(player, "fire_proof") then
return
end
-- Hurt players standing on top of this block
if player:get_hp() > 0 then
if mod_death_messages then

View File

@ -503,6 +503,14 @@ function mcl_potions._load_player_effects(player)
end
-- Returns true if player has given effect
function mcl_potions.player_has_effect(player, effect_name)
if not EF[effect_name] then
return false
end
return EF[effect_name][player] ~= nil
end
minetest.register_on_leaveplayer( function(player)
mcl_potions._save_player_effects(player)
mcl_potions._reset_player_effects(player) -- clearout the buffer to prevent looking for a player not there