diff --git a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
index 201ce11cf6..ed940349b8 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
@@ -151,12 +151,12 @@
icon_state = initial(icon_state)
if(is_servant_of_ratvar(user) || isobserver(user))
if(!active)
- to_chat(user, "Seconds until the Ark's activation: [get_arrival_text(TRUE)]")
+ to_chat(user, "Time until the Ark's activation: [DisplayTimeText(get_arrival_text(FALSE))]")
else
if(grace_period)
- to_chat(user, "Crew grace period time remaining: [get_arrival_text(TRUE)]")
+ to_chat(user, "Crew grace period time remaining: [DisplayTimeText(get_arrival_text(FALSE))]")
else
- to_chat(user, "Seconds until Ratvar's arrival: [get_arrival_text(TRUE)]")
+ to_chat(user, "Time until Ratvar's arrival: [DisplayTimeText(get_arrival_text(FALSE))]")
switch(progress_in_seconds)
if(-INFINITY to GATEWAY_REEBE_FOUND)
to_chat(user, "The Ark is feeding power into the bluespace field.")