From 518963425bf712c332f059b05f3f8afd6b02cdb5 Mon Sep 17 00:00:00 2001 From: Kyep Date: Mon, 1 May 2017 22:10:43 -0700 Subject: [PATCH 1/2] Fixes vampire enthrall not creating VV or ATTACK: logs --- code/game/gamemodes/vampire/vampire_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/vampire/vampire_powers.dm b/code/game/gamemodes/vampire/vampire_powers.dm index 9d1796523f9..b96714d630a 100644 --- a/code/game/gamemodes/vampire/vampire_powers.dm +++ b/code/game/gamemodes/vampire/vampire_powers.dm @@ -340,7 +340,7 @@ H.mind.special_role = SPECIAL_ROLE_VAMPIRE_THRALL to_chat(H, "You have been Enthralled by [user]. Follow their every command.") to_chat(user, "You have successfully Enthralled [H]. If they refuse to do as you say just adminhelp.") - log_admin("[ckey(user.key)] has mind-slaved [ckey(H.key)].") + add_logs(user, H, "vampire-thralled", admin = 1, print_attack_log = 1) /obj/effect/proc_holder/spell/vampire/self/cloak name = "Cloak of Darkness" From 31f1f7d34d25855e175141c7385250910f2affd5 Mon Sep 17 00:00:00 2001 From: Kyep Date: Mon, 1 May 2017 22:43:39 -0700 Subject: [PATCH 2/2] Removed last two args --- code/game/gamemodes/vampire/vampire_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/vampire/vampire_powers.dm b/code/game/gamemodes/vampire/vampire_powers.dm index b96714d630a..13f05048393 100644 --- a/code/game/gamemodes/vampire/vampire_powers.dm +++ b/code/game/gamemodes/vampire/vampire_powers.dm @@ -340,7 +340,7 @@ H.mind.special_role = SPECIAL_ROLE_VAMPIRE_THRALL to_chat(H, "You have been Enthralled by [user]. Follow their every command.") to_chat(user, "You have successfully Enthralled [H]. If they refuse to do as you say just adminhelp.") - add_logs(user, H, "vampire-thralled", admin = 1, print_attack_log = 1) + add_logs(user, H, "vampire-thralled") /obj/effect/proc_holder/spell/vampire/self/cloak name = "Cloak of Darkness"