From 26b5b46066c1e8f7ab99c7fb7fd7e354c3b3bcf4 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Tue, 29 Oct 2024 23:40:01 +1000 Subject: [PATCH] Black boxes his grace ascentions. (#27221) * Black boxes his grace ascentions * Update code/game/objects/items/his_grace.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> * more logging = better(thanks contra) * Update his_grace.dm --------- Signed-off-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/game/objects/items/his_grace.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/objects/items/his_grace.dm b/code/game/objects/items/his_grace.dm index 12d5a908dce..bfbab388478 100644 --- a/code/game/objects/items/his_grace.dm +++ b/code/game/objects/items/his_grace.dm @@ -39,8 +39,12 @@ /obj/item/his_grace/Destroy() STOP_PROCESSING(SSprocessing, src) + SSblackbox.record_feedback("ledger", "his_grace", victims, "victim_count") + var/mob_counter = 0 for(var/mob/living/L in src) L.forceMove(get_turf(src)) + mob_counter++ + SSblackbox.record_feedback("ledger", "his_grace", mob_counter, "mob_count") GLOB.poi_list -= src return ..() @@ -275,6 +279,7 @@ icon_state = "his_grace_ascended" item_state = "toolbox_gold" ascended = TRUE + SSblackbox.record_feedback("amount", "his_grace_ascended", 1) update_icon() playsound(src, 'sound/effects/his_grace_ascend.ogg', 100) var/mob/living/carbon/human/master = loc