From 37f2f47a64faafe80bf634a7a4d6a2c1ba3a9dd3 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:29:40 -0400 Subject: [PATCH] Adds blackbox logging to rnd printing. (#22544) * Now I'm getting paid cash with atlas earth * Update code/modules/research/rdconsole.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/modules/research/rdconsole.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 253a0b1d97f..3243156b5b6 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -459,6 +459,7 @@ won't update every console in existence) but it's more of a hassle to do. Also, /obj/machinery/computer/rdconsole/proc/finish_machine(key, amount, enough_materials, obj/machinery/r_n_d/machine, datum/design/being_built, list/efficient_mats) if(machine) if(enough_materials && being_built) + SSblackbox.record_feedback("nested tally", "RND Production List", amount, list("[being_built.category]", "[being_built.name]")) for(var/i in 1 to amount) var/obj/item/new_item = new being_built.build_path(src) if(istype(new_item, /obj/item/storage/backpack/holding))