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.
This commit is contained in:
Moku Moku
2020-06-13 15:19:59 +02:00
committed by GitHub
parent 97f690b109
commit 07f085a6c4
@@ -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()