Fix cut-n-paste error.

* Swap misplaced lines.
* Concatenate conditional expression.
This commit is contained in:
kabou 2022-03-09 18:26:51 +01:00
parent 1326b9e7e7
commit 11ee1d133f
1 changed files with 1 additions and 2 deletions

View File

@ -1328,9 +1328,8 @@ local do_jump = function(self)
return false
end
if self.walk_chance == 0
local ndef = minetest.registered_nodes[nod.name]
or ndef and ndef.walkable then
if self.walk_chance == 0 or ndef and ndef.walkable then
if minetest.get_item_group(nod.name, "fence") == 0
and minetest.get_item_group(nod.name, "fence_gate") == 0