2012-12-06 08:00:48 -07:00
|
|
|
-- On map load writes the current season to gamelog.txt
|
|
|
|
|
|
|
|
local seasons = {
|
2013-03-16 02:15:55 -06:00
|
|
|
[-1] = 'Nothing', -- worldgen
|
2012-12-06 08:00:48 -07:00
|
|
|
[0] = 'Spring',
|
|
|
|
[1] = 'Summer',
|
|
|
|
[2] = 'Autumn',
|
|
|
|
[3] = 'Winter',
|
|
|
|
}
|
|
|
|
|
|
|
|
local args = {...}
|
|
|
|
|
|
|
|
if args[1] == 'disable' then
|
|
|
|
dfhack.onStateChange[_ENV] = nil
|
|
|
|
else
|
|
|
|
dfhack.onStateChange[_ENV] = function(op)
|
|
|
|
if op == SC_WORLD_LOADED then
|
2014-04-14 09:43:12 -06:00
|
|
|
dfhack.gui.writeToGamelog(seasons[df.global.cur_season]..' has arrived on the calendar.')
|
2012-12-06 08:00:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|