diff --git a/conveyor.lua b/conveyor.lua index 35bb670..e79308a 100644 --- a/conveyor.lua +++ b/conveyor.lua @@ -91,7 +91,7 @@ minetest.register_globalstep(function (dtime) if name == "rmod:conveyor" then -- I might replace this with a group, e.g. def.groups.conveyor, so you can set the speed. local facing = node.param2 -- Param2 is the facedir as defined above - conveyors face the opposite direction they move you. local direction = minetest.facedir_to_dir(facing) - local movement = vector.multiply(direction, {x=-1, y=-1, z=-1}) -- We reversed the facing system recently...then reversed it back. + local movement = vector.multiply(direction, {x=1, y=1, z=1}) -- We reversed the facing system recently. local newpos = vector.add(position, movement) local newrpos = {x=round(newpos.x), y=round(newpos.y), z=round(newpos.z)} diff --git a/textures/rmod_conveyor_side.png b/textures/rmod_conveyor_side.png index 4cd0cc4..bdf99b3 100644 Binary files a/textures/rmod_conveyor_side.png and b/textures/rmod_conveyor_side.png differ diff --git a/textures/rmod_conveyor_top_animated_2.png b/textures/rmod_conveyor_top_animated_2.png index 5e6324e..a824c5f 100644 Binary files a/textures/rmod_conveyor_top_animated_2.png and b/textures/rmod_conveyor_top_animated_2.png differ diff --git a/textures/rmod_conveyor_top_animated_2_reversed.png b/textures/rmod_conveyor_top_animated_2_reversed.png index a824c5f..01f5a6b 100644 Binary files a/textures/rmod_conveyor_top_animated_2_reversed.png and b/textures/rmod_conveyor_top_animated_2_reversed.png differ