From c9f8f559451f0ef9ba100bd087015cc9764269fd Mon Sep 17 00:00:00 2001
From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com>
Date: Fri, 8 May 2020 15:29:20 -0400
Subject: [PATCH] Update mecha_construction_paths.dm
---
code/game/mecha/mecha_construction_paths.dm | 34 ++++++++++-----------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm
index c3ac65e5c8..3ba383de05 100644
--- a/code/game/mecha/mecha_construction_paths.dm
+++ b/code/game/mecha/mecha_construction_paths.dm
@@ -8,39 +8,39 @@
/datum/component/construction/mecha/examine(mob/user)
. = ..()
if(looky_helpy)
- switch("key")
+ switch(steps[index]["key"])
if(TOOL_WRENCH)
- desc += "The mech could be wrenched into place."
+ desc .+= "The mech could be wrenched into place."
if(TOOL_SCREWDRIVER)
- desc += "The mech could be screwed into place."
+ desc .+= "The mech could be screwed into place."
if(TOOL_WIRECUTTER)
- desc += "The mech wires could be trimmed into place."
+ desc .+= "The mech wires could be trimmed into place."
if(/obj/item/stack/cable_coil)
- desc += "The mech could use some wiring."
+ desc .+= "The mech could use some wiring."
if(/obj/item/circuitboard)
- desc += "The mech could use a type ofcircuitboard."
+ desc .+= "The mech could use a type ofcircuitboard."
if(/obj/item/stock_parts/scanning_module)
- desc += "The mech could use a scanning stock part."
+ desc .+= "The mech could use a scanning stock part."
if(/obj/item/stock_parts/capacitor)
- desc += "The mech could use a power based stock part."
+ desc .+= "The mech could use a power based stock part."
if(/obj/item/stock_parts/cell)
- desc += "The mech could use a power source."
+ desc .+= "The mech could use a power source."
if(/obj/item/stack/sheet/metal)
- desc += "The mech could use some sheets of metal."
+ desc .+= "The mech could use some sheets of metal."
if(/obj/item/stack/sheet/plasteel)
- desc += "The mech could use some sheets of strong steel."
+ desc .+= "The mech could use some sheets of strong steel."
if(/obj/item/bikehorn)
- desc += "HONK IT!."
+ desc .+= "HONK IT!."
if(/obj/item/clothing/mask/gas/clown_hat)
- desc += "GIVE IT CLOWN MAKEUP HONK!."
+ desc .+= "GIVE IT CLOWN MAKEUP HONK!."
if(/obj/item/clothing/shoes/clown_shoes)
- desc += "GIVE IT GOOFY SHOES HONK HONK!."
+ desc .+= "GIVE IT GOOFY SHOES HONK HONK!."
if(/obj/item/mecha_parts/part)
- desc += "The mech could use a mech part."
+ desc .+= "The mech could use a mech part."
if(/obj/item/stack/ore/bluespace_crystal)
- desc += "The mech could use a crystal of sorts."
+ desc .+= "The mech could use a crystal of sorts."
if(/obj/item/assembly/signaler/anomaly)
- desc += "The mech could use a anomaly of sorts."
+ desc .+= "The mech could use a anomaly of sorts."
else
return