new flow logic: abm_register.lua: update doc comments for register_abm_input()

This commit is contained in:
thetaepsilon-gamedev 2017-10-01 12:28:22 +01:00
parent 463e7a206a
commit 15b41d14f3
1 changed files with 3 additions and 2 deletions

View File

@ -22,8 +22,9 @@ local register_abm_balance = function(nodename)
end
register.balance = register_abm_balance
-- register a node for the pump ABM.
-- maxpressure is the maximum pressure that this pump can drive.
-- register a node for the input ABM.
-- intakefn is run on the node to determine how much water can be taken (and update it's environment accordingly).
-- maxpressure is the maximum pressure that this input can drive, beyond which pressure will not be raised.
local register_abm_input = function(nodename, maxpressure, intakefn)
minetest.register_abm({
nodenames = { nodename },