From 20d5e4f480fc515a7ed9a4466f5eecd9e56b7ff9 Mon Sep 17 00:00:00 2001 From: r4d6 Date: Tue, 7 Jan 2020 01:45:59 -0500 Subject: [PATCH] Make the RCD show its upgrades on examination. And remove a small copy-pasta. --- code/game/objects/items/RCD.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm index 420f5467d8..f5f489fd2e 100644 --- a/code/game/objects/items/RCD.dm +++ b/code/game/objects/items/RCD.dm @@ -47,7 +47,11 @@ RLD /obj/item/construction/examine(mob/user) . = ..() - . += "\A [src]. It currently holds [matter]/[max_matter] matter-units." + . += "\It currently holds [matter]/[max_matter] matter-units." + if(upgrade & RCD_UPGRADE_FRAMES) + . += "\It contains the design for machine frames, computer frames and deconstruction." + if(upgrade & RCD_UPGRADE_SIMPLE_CIRCUITS) + . += "\It contains the design for firelock, air alarm, fire alarm, apc circuits and crap power cells." /obj/item/construction/Destroy() QDEL_NULL(spark_system)