dupe patch - might not be needed if future minetest entity management is fixed

This commit is contained in:
rnd1 2017-08-03 10:50:35 +02:00
parent c55d2d6a4a
commit 17a6f6d8d5

View File

@ -11,7 +11,7 @@ local machines_minstep = 1 -- minimal allowed activation timestep, if faster mac
local max_range = 10; -- machines normal range of operation
local machines_operations = 10; -- 1 coal will provide 10 mover basic operations ( moving dirt 1 block distance)
local machines_TTL = 16; -- time to live for signals, how many hops before signal dissipates
basic_machines.version = "01/17/2017a";
basic_machines.version = "08/03/2017a";
basic_machines.clockgen = 1; -- if 0 all background continuously running activity (clockgen/keypad) repeating is disabled
-- how hard it is to move blocks, default factor 1, note fuel cost is this multiplied by distance and divided by machine_operations..
@ -409,6 +409,7 @@ minetest.register_node("basic_machines:mover", {
teleport_any = true;
inv:add_item("main", stack);
end
obj:setpos({x=0,y=0,z=0}); -- patch for dupe, might not be needed if future minetest object management is better
obj:remove();
end
end