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
1 changed files with 4 additions and 0 deletions

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