Skip to content

Commit 48e46a6

Browse files
committed
extra-gamelog: Fix season messages, error when loading spring saves
e0346ed, DFHack#754
1 parent 17f73f8 commit 48e46a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modtools/extra-gamelog.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ function log_on_load(op)
1616
-- Seasons fix for Soundsense
1717
local seasons = {
1818
[-1] = 'Nothing', -- worldgen
19-
'Spring',
20-
'Summer',
21-
'Autumn',
22-
'Winter'}
19+
[0] = 'Spring',
20+
[1] = 'Summer',
21+
[2] = 'Autumn',
22+
[3] = 'Winter'}
2323
msg(seasons[df.global.cur_season]..' has arrived on the calendar.')
2424

2525
-- Weather fix for Soundsense

0 commit comments

Comments
 (0)