Add option to disable cyclic behaviour

This commit is contained in:
Novatux 2013-06-28 15:16:28 +02:00
parent 6ca5da4c3a
commit 89be094a1e
2 changed files with 7 additions and 1 deletions

View File

@ -14,6 +14,7 @@
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")
local DEBUG = false
local CYCLIC = true
pipeworks_liquid_texture = "default_water.png"

View File

@ -465,7 +465,9 @@ function go_next(pos,velocity,stack)
break
end
until false
meta:set_int("tubedir",n)
if CYCLIC then
meta:set_int("tubedir",n)
end
velocity.x=tubes[n].vect.x*vel.speed
velocity.y=tubes[n].vect.y*vel.speed
velocity.z=tubes[n].vect.z*vel.speed
@ -484,6 +486,9 @@ function go_next(pos,velocity,stack)
break
end
until false
if CYCLIC then
meta:set_int("tubedir",n)
end
velocity.x=chests[n].vect.x*speed
velocity.y=chests[n].vect.y*speed
velocity.z=chests[n].vect.z*speed