diff options
Diffstat (limited to 'mesecons_luacontroller')
| -rw-r--r-- | mesecons_luacontroller/init.lua | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/mesecons_luacontroller/init.lua b/mesecons_luacontroller/init.lua index 0887a33..854e264 100644 --- a/mesecons_luacontroller/init.lua +++ b/mesecons_luacontroller/init.lua @@ -201,7 +201,8 @@ local create_environment = function(pos, mem, event)  			tostring = tostring,  			tonumber = tonumber,  			heat = minetest.get_meta(pos):get_int("heat"), -			heat_max = OVERHEAT_MAX, +			-- overheat_max Unit: actions per second, checks are every 1 second +			heat_max = mesecon.setting("overheat_max", 20),  			string = {  				byte = string.byte,  				char = string.char, | 
