We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e91375 + 4ee1a21 commit d912fc2Copy full SHA for d912fc2
chronicle.lua
@@ -45,8 +45,8 @@ local function check_artifacts()
45
for _, rec in ipairs(df.global.world.artifacts.all) do
46
if rec.id > last_id then
47
local name = dfhack.translation.translateName(rec.name)
48
- -- artifact_record stores the creation tick in `year_tick`
49
- local date = format_date(rec.year, rec.year_tick or 0)
+ -- artifact_record stores the creation tick in `season_tick`
+ local date = format_date(rec.year, rec.season_tick or 0)
50
add_entry(string.format('Artifact "%s" created on %s', name, date))
51
last_id = rec.id
52
end
0 commit comments