Fixes some record_feedback calls (#33317)

* Fixes protolathe feedback

* Fix circuit imprinter record_feedback

* Fixes destructive analyzer record_feedback
This commit is contained in:
Jordan Brown
2017-12-07 15:04:55 +01:00
committed by AnturK
parent cf67005bfd
commit 713f2fcfa1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -123,4 +123,4 @@ using metal and glass, it uses glass and reagents (usually sulfuric acis).
message_admins("[ADMIN_LOOKUPFLW(usr)] has built [path] at a circuit imprinter.")
var/obj/item/I = new path(get_turf(src))
I.materials = matlist.Copy()
SSblackbox.record_feedback("nested_tally", "circuit_printed", 1, list("[type]", "[path]"))
SSblackbox.record_feedback("nested tally", "circuit_printed", 1, list("[type]", "[path]"))
@@ -115,7 +115,7 @@ Note: Must be placed within 3 tiles of the R&D Console
return FALSE
if(QDELETED(loaded_item) || QDELETED(linked_console) || !user.Adjacent(linked_console) || QDELETED(src))
return FALSE
SSblackbox.record_feedback("nested_tally", "item_deconstructed", 1, list("[TN.id]", "[loaded_item.type]"))
SSblackbox.record_feedback("nested tally", "item_deconstructed", 1, list("[TN.id]", "[loaded_item.type]"))
if(destroy_item(loaded_item))
linked_console.stored_research.boost_with_path(SSresearch.techweb_nodes[TN.id], dpath)
+1 -1
View File
@@ -132,4 +132,4 @@ Note: Must be placed west/left of and R&D console to function.
var/obj/item/I = new path(get_turf(src))
if(!istype(I, /obj/item/stack/sheet) && !istype(I, /obj/item/ore/bluespace_crystal))
I.materials = matlist.Copy()
SSblackbox.record_feedback("nested_tally", "item_printed", amount, list("[type]", "[path]"))
SSblackbox.record_feedback("nested tally", "item_printed", amount, list("[type]", "[path]"))