forked from minetest-mods/mesecons
Remove mesecons:updatenode
This commit is contained in:
parent
a1852204fb
commit
c76c274cc0
|
@ -47,7 +47,6 @@
|
||||||
-- mesecon:rules_link(output, input, dug_outputrules) --> Returns true if outputposition + outputrules = inputposition and inputposition + inputrules = outputposition (if the two positions connect)
|
-- mesecon:rules_link(output, input, dug_outputrules) --> Returns true if outputposition + outputrules = inputposition and inputposition + inputrules = outputposition (if the two positions connect)
|
||||||
-- mesecon:rules_link_anydir(outp., inp., d_outpr.) --> Same as rules mesecon:rules_link but also returns true if output and input are swapped
|
-- mesecon:rules_link_anydir(outp., inp., d_outpr.) --> Same as rules mesecon:rules_link but also returns true if output and input are swapped
|
||||||
-- mesecon:is_powered(pos) --> Returns true if pos is powered by a receptor or a conductor
|
-- mesecon:is_powered(pos) --> Returns true if pos is powered by a receptor or a conductor
|
||||||
-- mesecon:updatenode(pos) | deprecated --> Updates the state of pos and surroundings e.g. when newly placed by a piston
|
|
||||||
|
|
||||||
-- RULES ROTATION helpsers
|
-- RULES ROTATION helpsers
|
||||||
-- mesecon:rotate_rules_right(rules)
|
-- mesecon:rotate_rules_right(rules)
|
||||||
|
@ -410,14 +409,6 @@ function mesecon:is_powered(pos)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function mesecon:updatenode(pos)
|
|
||||||
if mesecon:is_powered(pos) then
|
|
||||||
mesecon:turnon(pos)
|
|
||||||
else
|
|
||||||
mesecon:turnoff(pos)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
--Rules rotation Functions:
|
--Rules rotation Functions:
|
||||||
function mesecon:rotate_rules_right(rules)
|
function mesecon:rotate_rules_right(rules)
|
||||||
local nr={};
|
local nr={};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user