From 8da6bebd1a560fdda6a504dc67c436f252b671ba Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 11 Oct 2020 03:47:32 +0200 Subject: [PATCH] [MIRROR] Add game logging to abductor gland mind control. (#1243) * Add game logging to abductor gland mind control. (#54266) * Add game logging to abductor gland mind control. Co-authored-by: Timberpoes --- code/modules/antagonists/abductor/equipment/gland.dm | 1 + code/modules/antagonists/abductor/equipment/glands/mindshock.dm | 1 + code/modules/antagonists/abductor/equipment/glands/quantum.dm | 1 + 3 files changed, 3 insertions(+) diff --git a/code/modules/antagonists/abductor/equipment/gland.dm b/code/modules/antagonists/abductor/equipment/gland.dm index 0fcb5357c6b..b0c4de8b254 100644 --- a/code/modules/antagonists/abductor/equipment/gland.dm +++ b/code/modules/antagonists/abductor/equipment/gland.dm @@ -59,6 +59,7 @@ to_chat(owner, "[command]") active_mind_control = TRUE message_admins("[key_name(user)] sent an abductor mind control message to [key_name(owner)]: [command]") + log_game("[key_name(user)] sent an abductor mind control message to [key_name(owner)]: [command]") update_gland_hud() var/obj/screen/alert/mind_control/mind_alert = owner.throw_alert("mind_control", /obj/screen/alert/mind_control) mind_alert.command = command diff --git a/code/modules/antagonists/abductor/equipment/glands/mindshock.dm b/code/modules/antagonists/abductor/equipment/glands/mindshock.dm index bcad4bac557..94faf7ced2c 100644 --- a/code/modules/antagonists/abductor/equipment/glands/mindshock.dm +++ b/code/modules/antagonists/abductor/equipment/glands/mindshock.dm @@ -42,6 +42,7 @@ to_chat(H, "[command]") message_admins("[key_name(user)] broadcasted an abductor mind control message from [key_name(owner)] to [key_name(H)]: [command]") + log_game("[key_name(user)] broadcasted an abductor mind control message from [key_name(owner)] to [key_name(H)]: [command]") var/obj/screen/alert/mind_control/mind_alert = H.throw_alert("mind_control", /obj/screen/alert/mind_control) mind_alert.command = command diff --git a/code/modules/antagonists/abductor/equipment/glands/quantum.dm b/code/modules/antagonists/abductor/equipment/glands/quantum.dm index fc1ddae030d..a15fe1d0471 100644 --- a/code/modules/antagonists/abductor/equipment/glands/quantum.dm +++ b/code/modules/antagonists/abductor/equipment/glands/quantum.dm @@ -38,6 +38,7 @@ var/obj/screen/alert/mind_control/mind_alert = entangled_mob.throw_alert("mind_control", /obj/screen/alert/mind_control) mind_alert.command = command message_admins("[key_name(owner)] mirrored an abductor mind control message to [key_name(entangled_mob)]: [command]") + log_game("[key_name(owner)] mirrored an abductor mind control message to [key_name(entangled_mob)]: [command]") update_gland_hud() /obj/item/organ/heart/gland/quantum/clear_mind_control()