forked from Mirrorlandia_minetest/mesecons
Let things fall behind movestones (#421)
* Let things fall behind movestones
This commit is contained in:
parent
a234006592
commit
f61b1affea
@ -60,14 +60,16 @@ function mesecon.register_movestone(name, def, is_sticky, is_vertical)
|
|||||||
minetest.get_node_timer(frontpos):start(timer_interval)
|
minetest.get_node_timer(frontpos):start(timer_interval)
|
||||||
|
|
||||||
-- ### Step 3: If sticky, pull stack behind ###
|
-- ### Step 3: If sticky, pull stack behind ###
|
||||||
if not is_sticky then
|
if is_sticky then
|
||||||
return
|
local backpos = vector.subtract(pos, direction)
|
||||||
end
|
success, stack, oldstack = mesecon.mvps_pull_all(backpos, direction, max_pull)
|
||||||
local backpos = vector.subtract(pos, direction)
|
if success then
|
||||||
success, stack, oldstack = mesecon.mvps_pull_all(backpos, direction, max_pull)
|
mesecon.mvps_move_objects(backpos, vector.multiply(direction, -1), oldstack, -1)
|
||||||
if success then
|
end
|
||||||
mesecon.mvps_move_objects(backpos, vector.multiply(direction, -1), oldstack, -1)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- ### Step 4: Let things fall ###
|
||||||
|
minetest.check_for_falling(vector.add(pos, {x=0, y=1, z=0}))
|
||||||
end
|
end
|
||||||
|
|
||||||
def.is_ground_content = false
|
def.is_ground_content = false
|
||||||
|
Loading…
Reference in New Issue
Block a user