1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-06-29 21:31:02 +02:00

remove unnecessary nodeupdate() usage

this undocumented function is internally being used for falling or attached nodes and shouldn't be needed here
This commit is contained in:
Tim
2015-01-24 19:47:04 +01:00
parent fc436a1a1c
commit 307d969f4c
3 changed files with 0 additions and 10 deletions

View File

@ -31,7 +31,6 @@ computer.register = function ( name, def )
end
node.name = OFFSTATE;
minetest.set_node(pos, node);
nodeupdate(pos);
end;
});
minetest.register_node(OFFSTATE, {
@ -56,7 +55,6 @@ computer.register = function ( name, def )
end
node.name = ONSTATE;
minetest.set_node(pos, node);
nodeupdate(pos);
end;
drop = ONSTATE;
});