diff --git a/code/game/gamemodes/miniantags/guardian/guardian.dm b/code/game/gamemodes/miniantags/guardian/guardian.dm
index ecfa7ea3f96..e14e3ba9981 100644
--- a/code/game/gamemodes/miniantags/guardian/guardian.dm
+++ b/code/game/gamemodes/miniantags/guardian/guardian.dm
@@ -194,7 +194,7 @@
// Show the message to the host and to the guardian.
to_chat(summoner, "[src]: [input]")
to_chat(src, "[src]: [input]")
- log_say("(GUARDIAN to [key_name(summoner)]) [input]", src)
+ log_say("(GUARDIAN to [key_name(summoner)]): [input]", src)
create_log(SAY_LOG, "GUARDIAN to HOST: [input]", summoner)
// Show the message to any ghosts/dead players.
diff --git a/code/game/gamemodes/miniantags/guardian/host_actions.dm b/code/game/gamemodes/miniantags/guardian/host_actions.dm
index c6e48221705..1e431a7bb00 100644
--- a/code/game/gamemodes/miniantags/guardian/host_actions.dm
+++ b/code/game/gamemodes/miniantags/guardian/host_actions.dm
@@ -34,7 +34,7 @@
// Show the message to our guardian and to host.
to_chat(guardian, "[owner]: [input]")
to_chat(owner, "[owner]: [input]")
- log_say("(GUARDIAN to [key_name(guardian)]) [input]", owner)
+ log_say("(HOST to [key_name(guardian)]): [input]", owner)
owner.create_log(SAY_LOG, "HOST to GUARDIAN: [input]", guardian)
// Show the message to any ghosts/dead players.