Skip to content

Commit

Permalink
Fix falling entity not falling through players
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed May 27, 2020
1 parent f90ca96 commit 03dae5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/game/falling.lua
Expand Up @@ -323,7 +323,7 @@ core.register_entity(":__builtin:falling_node", {
z = vel.z
})
self.object:set_pos(vector.add(self.object:get_pos(),
{x = 0, y = -0.2, z = 0}))
{x = 0, y = -0.5, z = 0}))
end
return
elseif bcn.name == "ignore" then
Expand Down

0 comments on commit 03dae5f

Please sign in to comment.