1
0
mirror of https://github.com/Splizard/minetest-mod-snow.git synced 2024-12-28 07:30:17 +01:00

Remove snowfall entities if they get stuck for more then 2mins.

This commit is contained in:
Splizard 2012-12-18 15:19:42 +13:00
parent 040e8d2354
commit 2cc269f544

View File

@ -434,6 +434,10 @@ if snow.enable_snowfall then
minetest.env:place_node(self.lastpos,{name="snow:snow"})
self.object:remove()
end
if self.timer > 120 then
self.object:remove()
end
self.lastpos={x=pos.x, y=pos.y, z=pos.z} -- Set lastpos-->Node will be added at last pos outside the node
end