fix frost walker enchant not protecting from magma block damage

This commit is contained in:
AFCMS 2022-03-13 19:11:28 +01:00
parent ba0e2cbf29
commit 47b1eeda74
Signed by untrusted user: AFCMS
GPG Key ID: 8720389A25B652E3
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ minetest.register_node("mcl_nether:magma", {
sounds = mcl_sounds.node_sound_stone_defaults(),
-- From walkover mod
on_walk_over = function(loc, nodeiamon, player)
if player and player:get_player_control().sneak or minetest.global_exists("mcl_potions") and mcl_potions.player_has_effect(player, "fire_proof") then
local armor_feet = player:get_inventory():get_stack("armor", 5)
if player and player:get_player_control().sneak or (minetest.global_exists("mcl_enchanting") and mcl_enchanting.has_enchantment(armor_feet, "frost_walker")) or (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