mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-11 10:30:25 +01:00
Reduce the blinky_plant speed and add it on minetest.conf instead of in the mod (hardset vs softset)
This commit is contained in:
parent
8f6ff84f4b
commit
d854e40ff9
@ -120,6 +120,8 @@ mapfix_delay = 5
|
||||
disable_time_regulation = true
|
||||
# Tweak the mapgen chunksize (16 per 16 nodes, default is "5"), will be applied on many mods
|
||||
chunksize = 3
|
||||
# Reduce Mesecons "blinky_plant" speed
|
||||
mesecon.blinky_plant_interval = 7
|
||||
|
||||
### IRC CHAT ###
|
||||
################
|
||||
|
@ -5,7 +5,7 @@ local toggle_timer = function (pos)
|
||||
if timer:is_started() then
|
||||
timer:stop()
|
||||
else
|
||||
timer:start(mesecon.setting("blinky_plant_interval", 7))
|
||||
timer:start(mesecon.setting("blinky_plant_interval", 3))
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user