A quick attempt at reverse engineering the mod shows that it's reading the minetest.conf setting "mymonths_use_weather" to control whether weather and those chat commands are enabled. Try setting that to "true".
Relevant sections of the code follow:
init.lua (line 8):
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
mymonths.use_weather = minetest.setting_getbool("mymonths_use_weather")
commands.lua (lines 9-10):
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
if mymonths.use_weather == true then
minetest.register_chatcommand("setweather", {
commands.lua (lines 83-84):
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
if mymonths.use_weather == true then
minetest.register_chatcommand("weather", {