Add chat commands for forcing weather presets

This commit is contained in:
Till Affeldt
2020-04-15 00:12:44 +02:00
parent 299d520af6
commit f42f8481da
4 changed files with 68 additions and 16 deletions

View File

@ -33,12 +33,13 @@ climate_mod.settings = {
}
-- initiate empty registers
climate_mod.current_weather = {}
climate_mod.current_effects = {}
climate_mod.weathers = {}
climate_mod.effects = {}
climate_mod.cycles = {}
climate_mod.influences = {}
climate_mod.current_weather = {}
climate_mod.current_effects = {}
climate_mod.forced_weather = {}
-- import core API
climate_mod.state = dofile(modpath .. "/lib/datastorage.lua")