Weather events are proper again

This commit is contained in:
bingus_violet 2024-03-23 01:24:58 -05:00
parent 2109d74cee
commit 393e12aadc

View file

@ -82,7 +82,7 @@ function converter(html, query) {
html = html.substring(0, html.indexOf("<body>")) + bodyHTML + html.substring(html.indexOf("</body>") + 7) html = html.substring(0, html.indexOf("<body>")) + bodyHTML + html.substring(html.indexOf("</body>") + 7)
var weathers = ["rain"] var weathers = ["rain", "none"]
var weather = weathers[time.getDate() % weathers.length] var weather = weathers[time.getDate() % weathers.length]