From 9301e03b522a17b4e14ea29eaf903485224ebabf Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 30 Jun 2020 20:05:08 -0400 Subject: [PATCH] Update fire resistance to allow damage if "drowning" in lava --- mods/ITEMS/mcl_potions/functions.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/mods/ITEMS/mcl_potions/functions.lua b/mods/ITEMS/mcl_potions/functions.lua index 7b5cd395f..0b27bdfdd 100644 --- a/mods/ITEMS/mcl_potions/functions.lua +++ b/mods/ITEMS/mcl_potions/functions.lua @@ -59,7 +59,7 @@ minetest.register_globalstep(function(dtime) if player._cmi_is_mob then player.health = math.max(player.health - 1, 1) else - player:set_hp( math.max(player:get_hp() - 1, 1) ) + player:set_hp( math.max(player:get_hp() - 1, 1), { type = "punch", from = "potion" }) end is_poisoned[player].hit_timer = 0 @@ -259,6 +259,7 @@ minetest.register_globalstep(function(dtime) end) +-- Prevent damage to player with Fire Resistance enabled minetest.register_on_player_hpchange(function(player, hp_change) if is_fire_proof[player] and hp_change < 0 then @@ -268,7 +269,11 @@ minetest.register_on_player_hpchange(function(player, hp_change) local player_info = mcl_playerinfo[player:get_player_name()] if is_fire_node[player_info.node_head] or is_fire_node[player_info.node_feet] or is_fire_node[player_info.node_stand] then - return 0 + if player:get_breath() == 0 then -- probably drowning + return -1 + else + return 0 + end else return hp_change end @@ -466,7 +471,7 @@ function mcl_potions.healing_func(player, hp) if obj and obj._cmi_is_mob then obj.health = obj.health + hp else - player:set_hp(player:get_hp() + hp) + player:set_hp(player:get_hp() + hp, { type = "punch", from = "potion" }) end end