This mod overrides default falling entities with newer features.
|
3 days ago | |
---|---|---|
README.md | 1 year ago | |
depends.txt | 1 year ago | |
init.lua | 3 days ago |
falling.lua replacement
edited by TenPlus1
Features:
return false to skip further checks by falling_item
License: MIT
falling_step() example
minetest.override_item("default:gravel", {
falling_step = function(self, pos, dtime)
print (self.node.name .. " falling!", dtime)
end
})