From f8ebba6ed100f98d74f4404da6422b267f567688 Mon Sep 17 00:00:00 2001 From: Burzah <116982774+Burzah@users.noreply.github.com> Date: Wed, 1 May 2024 16:49:05 -0700 Subject: [PATCH] Adds logging for thrall deconversions (#25305) * thrall deconversion logging inside water.dm * moves logging to vamp_thrall.dm instead --- code/modules/antagonists/vampire/vamp_thrall.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/antagonists/vampire/vamp_thrall.dm b/code/modules/antagonists/vampire/vamp_thrall.dm index 112e9517332..8f6b729a6c0 100644 --- a/code/modules/antagonists/vampire/vamp_thrall.dm +++ b/code/modules/antagonists/vampire/vamp_thrall.dm @@ -9,6 +9,7 @@ RESTRICT_TYPE(/datum/antagonist/mindslave/thrall) SSticker.mode.vampire_enthralled += owner /datum/antagonist/mindslave/thrall/remove_owner_from_gamemode() + owner.current.create_log(CONVERSION_LOG, "Deconverted from thrall") SSticker.mode.vampire_enthralled -= owner /datum/antagonist/mindslave/thrall/apply_innate_effects(mob/living/mob_override)