From 4ee1a2123adfc938407349524179e7bf11de0dbe Mon Sep 17 00:00:00 2001 From: LOIRELAB <66545056+LoireLab@users.noreply.github.com> Date: Sat, 19 Jul 2025 20:14:24 +0200 Subject: [PATCH] fix chronicle artifact timestamp --- chronicle.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chronicle.lua b/chronicle.lua index 40548b68d..0a02840cb 100644 --- a/chronicle.lua +++ b/chronicle.lua @@ -45,8 +45,8 @@ local function check_artifacts() for _, rec in ipairs(df.global.world.artifacts.all) do if rec.id > last_id then local name = dfhack.translation.translateName(rec.name) - -- artifact_record stores the creation tick in `year_tick` - 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) add_entry(string.format('Artifact "%s" created on %s', name, date)) last_id = rec.id end