fix a very sneaky bug in atmos

This commit is contained in:
Jordach 2017-11-28 21:27:12 +00:00
parent 728f0b2171
commit 8811983c9a

View File

@ -12,8 +12,8 @@ minetest.register_chatcommand("ratio", {
return false, "You are not allowed to control the weather, you scrub. \n \n This incident WILL be reported."
end
atmos.current_weather = param
atmos.current_weather = 0 + param
return true, "Current weather updated."
end,
})