added comment and removed unnecessary code

This commit is contained in:
Sumyjkl 2022-07-17 22:50:22 +10:00
parent 4738834ddd
commit a41cbb7ebf
1 changed files with 2 additions and 4 deletions

View File

@ -499,12 +499,10 @@ minetest.register_globalstep(function(dtime)
-- Is player suffocating inside node? (Only for solid full opaque cube type nodes
-- without group disable_suffocation=1)
local ndef = nil
-- if swimming, check the feet node instead, because the head node will be above the player when swimming
local ndef = minetest.registered_nodes[node_head]
if is_swimming then
ndef = minetest.registered_nodes[node_feet]
else
ndef = minetest.registered_nodes[node_head]
end
if (ndef.walkable == nil or ndef.walkable == true)
and (ndef.collision_box == nil or ndef.collision_box.type == "regular")