From a3dfd062b3f1979c53099841a1cb33551da2522d Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Fri, 13 Jan 2023 10:08:41 -0600 Subject: [PATCH] CE's blueprints can now see wires (#20143) --- code/game/objects/items/blueprints.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index 0b8009da412..46a8ea629f8 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -341,3 +341,7 @@ fluffnotice = "Intellectual Property of Nanotrasen. For use in engineering cyborgs only. Wipe from memory upon departure from the station." /obj/item/areaeditor/blueprints/ce + +/obj/item/areaeditor/blueprints/ce/Initialize(mapload) + . = ..() + ADD_TRAIT(src, TRAIT_SHOW_WIRE_INFO, ROUNDSTART_TRAIT)