From f0a5d15388a101b487794ebf0dcfaf1066e40758 Mon Sep 17 00:00:00 2001 From: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Date: Wed, 23 Dec 2020 16:52:18 -0600 Subject: [PATCH] yes (#15179) --- code/game/gamemodes/miniantags/guardian/guardian.dm | 2 +- code/game/gamemodes/miniantags/guardian/host_actions.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.