diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-05 20:38:08 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-05 20:38:08 -0700 |
commit | 253ff1281571b888cfbfeb1a719eb98a1b5b98de (patch) | |
tree | d0995c9782df97af058b9b3757acba805d80676d /init.lua | |
parent | 1307710a60589555f7f08da90b28b78ae111f565 (diff) |
add lava and water alerts, and an option for setting lava impassible (true by default)
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,8 +7,9 @@ dofile( minetest.get_modpath( "digtron" ) .. "/node_builders.lua" ) -- contains dofile( minetest.get_modpath( "digtron" ) .. "/node_controllers.lua" ) -- controllers dofile( minetest.get_modpath( "digtron" ) .."/recipes.lua" ) -digtron.creative_mode = false -digtron.particle_effects = true +digtron.creative_mode = false -- this causes digtrons to operate without consuming fuel or building materials. +digtron.particle_effects = true -- Enables the spray of particles out the back of a digger head +digtron.lava_impassible = true -- when true, lava counts as protected nodes. digtron.cycle_time = 1 -- How many seconds a digtron waits between cycles. Auto-controllers can make this wait longer, but cannot make it shorter. digtron.traction_factor = 3.0 -- How many digtron nodes can be moved for each adjacent solid node that the digtron has traction against |