master #5

Merged
epCode merged 255 commits from VoxeLibre/VoxeLibre:master into master 2021-02-02 23:20:01 +01:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit fd5f3a8df7 - Show all commits

View File

@ -1292,12 +1292,13 @@ local do_jump = function(self)
if self.walk_chance == 0
or minetest.registered_items[nod.name].walkable then
if minetest.get_item_group(nod.name, "fence") == 0
local v = self.object:get_velocity()
if v.y == 0
and minetest.get_item_group(nod.name, "fence") == 0
and minetest.get_item_group(nod.name, "fence_gate") == 0
and minetest.get_item_group(nod.name, "wall") == 0 then
local v = self.object:get_velocity()
v.y = self.jump_height
set_animation(self, "jump") -- only when defined