diff options
author | Jeija <jeija@mesecons.net> | 2014-11-22 22:09:26 +0100 |
---|---|---|
committer | Jeija <jeija@mesecons.net> | 2014-11-22 22:09:26 +0100 |
commit | f977ac821aa2f6c7053ec7f65d289c57de1e91a8 (patch) | |
tree | 2d025fd6483e1ac3e4c409a356d2015aada00778 /mesecons_pistons | |
parent | 80d136125ef8f17af85d0045800d5e761ace3229 (diff) |
Re-implement settings system:
Settings can now be retrieved by mesecon.setting(<name>, <default>) and can be modified without
editing the source code by adding the setting to minetest.conf
For instance, you can add mesecon.blinky_plant_interval = 0.5 to minetest.conf in order to
increase the blinking speed.
Rewrite the blinky plant with nodetimers.
Fixes #161
Diffstat (limited to 'mesecons_pistons')
-rw-r--r-- | mesecons_pistons/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua index ee7c228..b247039 100644 --- a/mesecons_pistons/init.lua +++ b/mesecons_pistons/init.lua @@ -79,7 +79,8 @@ local piston_on = function(pos, node) local dir = piston_get_direction(pistonspec.dir, node) local np = mesecon.addPosRule(pos, dir) - local success, stack, oldstack = mesecon.mvps_push(np, dir, PISTON_MAXIMUM_PUSH) + local maxpush = mesecon.setting("piston_max_push", 15) + local success, stack, oldstack = mesecon.mvps_push(np, dir, maxpush) if success then minetest.add_node(pos, {param2 = node.param2, name = pistonspec.onname}) minetest.add_node(np, {param2 = node.param2, name = pistonspec.pusher}) |