]> git.lizzy.rs Git - Crafter.git/blob - mods/season/init.lua
Suffocation & home priv
[Crafter.git] / mods / season / init.lua
1 local dayofyear = os.date("*t").yday
2
3 if dayofyear >= 79 and dayofyear < 172 then
4         season = "spring"
5 elseif dayofyear < 266 then
6         season = "summer"
7 elseif dayofyear < 355 then
8         season = "autumn"
9 else
10         season = "winter"
11 end