From 33499fd2af8e1776813f88cff39c636641735f4b Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 18 Nov 2019 01:31:20 -0500 Subject: [PATCH 1/2] Update construction.dm --- code/modules/mob/living/simple_animal/bot/construction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/bot/construction.dm b/code/modules/mob/living/simple_animal/bot/construction.dm index d7902ded91df..c0efbf5cc788 100644 --- a/code/modules/mob/living/simple_animal/bot/construction.dm +++ b/code/modules/mob/living/simple_animal/bot/construction.dm @@ -102,7 +102,7 @@ if(ASSEMBLY_FOURTH_STEP) if(W.tool_behaviour == TOOL_WELDER) if(W.use_tool(src, user, 0, volume=40)) - if(build_step != 4) + if(build_step != 3) return name = "shielded frame assembly" to_chat(user, "You weld the vest to [src].") From c7fc61b7a5e6674a1b81a7193ec1e72a8745f02f Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 18 Nov 2019 01:52:56 -0500 Subject: [PATCH 2/2] Update construction.dm --- code/modules/mob/living/simple_animal/bot/construction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/bot/construction.dm b/code/modules/mob/living/simple_animal/bot/construction.dm index c0efbf5cc788..753f57742fef 100644 --- a/code/modules/mob/living/simple_animal/bot/construction.dm +++ b/code/modules/mob/living/simple_animal/bot/construction.dm @@ -347,7 +347,7 @@ if(ASSEMBLY_FIRST_STEP) if(I.tool_behaviour == TOOL_WELDER) if(I.use_tool(src, user, 0, volume=40)) - if(build_step != 1) + if(build_step != 0) return add_overlay("hs_hole") to_chat(user, "You weld a hole in [src]!")