From 1f49c2bd655e5f4d94c0b9acb59d9be6c5ab938d Mon Sep 17 00:00:00 2001 From: NotRanged Date: Wed, 27 Jan 2021 17:44:11 +0100 Subject: [PATCH] Change holosign examine; show sign count (#56440) The examine text of holosign creators now show how many projections are being maintained. Co-authored-by: Ranged --- code/game/objects/items/holosign_creator.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/holosign_creator.dm b/code/game/objects/items/holosign_creator.dm index 048657b2621..d9c8557b2b5 100644 --- a/code/game/objects/items/holosign_creator.dm +++ b/code/game/objects/items/holosign_creator.dm @@ -18,6 +18,10 @@ var/holosign_type = /obj/structure/holosign/wetsign var/holocreator_busy = FALSE //to prevent placing multiple holo barriers at once +/obj/item/holosign_creator/examine(mob/user) + . = ..() + . += "It is currently maintaining [signs.len]/[max_signs] projections." + /obj/item/holosign_creator/afterattack(atom/target, mob/user, proximity_flag) . = ..() if(!proximity_flag)