mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2025-07-06 18:20:33 +02:00
Use early return
This commit is contained in:
@ -394,15 +394,16 @@ end
|
|||||||
if armor.config.punch_damage == true then
|
if armor.config.punch_damage == true then
|
||||||
minetest.register_on_punchplayer(function(player, hitter,
|
minetest.register_on_punchplayer(function(player, hitter,
|
||||||
time_from_last_punch, tool_capabilities)
|
time_from_last_punch, tool_capabilities)
|
||||||
|
if hitter == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
if hitter ~= nil then
|
local hit_ip = hitter:is_player()
|
||||||
local hit_ip = hitter:is_player()
|
if name and hit_ip and minetest.is_protected(player:get_pos(), "") then
|
||||||
if name and hit_ip and minetest.is_protected(player:get_pos(), "") then
|
return
|
||||||
return
|
elseif name then
|
||||||
elseif name then
|
armor:punch(player, hitter, time_from_last_punch, tool_capabilities)
|
||||||
armor:punch(player, hitter, time_from_last_punch, tool_capabilities)
|
last_punch_time[name] = minetest.get_gametime()
|
||||||
last_punch_time[name] = minetest.get_gametime()
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user