From 07f085a6c48b5ef94ac8d65154dbb6ddaf500b04 Mon Sep 17 00:00:00 2001 From: Moku Moku <66841525+Moku-Mok@users.noreply.github.com> Date: Sat, 13 Jun 2020 15:19:59 +0200 Subject: [PATCH] Correcting Welder Messages on the Field Generator. This simply swaps WELD and SLICE messages that were previously incorrect to instead reflect as to what they should actually do. Hopefully this can clear up some confusion for players, aswell as making it just look cleaner. --- code/modules/power/singularity/field_generator.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/power/singularity/field_generator.dm b/code/modules/power/singularity/field_generator.dm index 62f2ed36065..b70a79106be 100644 --- a/code/modules/power/singularity/field_generator.dm +++ b/code/modules/power/singularity/field_generator.dm @@ -113,15 +113,15 @@ field_generator power level display if(!I.tool_use_check(user, 0)) return if(state == FG_SECURED) - WELDER_ATTEMPT_FLOOR_SLICE_MESSAGE - else if(state == FG_WELDED) WELDER_ATTEMPT_FLOOR_WELD_MESSAGE + else if(state == FG_WELDED) + WELDER_ATTEMPT_FLOOR_SLICE_MESSAGE if(I.use_tool(src, user, 20, volume = I.tool_volume)) if(state == FG_SECURED) - WELDER_FLOOR_SLICE_SUCCESS_MESSAGE + WELDER_FLOOR_WELD_SUCCESS_MESSAGE state = FG_WELDED else if(state == FG_WELDED) - WELDER_FLOOR_WELD_SUCCESS_MESSAGE + WELDER_FLOOR_SLICE_SUCCESS_MESSAGE state = FG_SECURED /obj/machinery/field/generator/emp_act()