From b5a260005cdd9facfb69b28930b5ffcbc73f4147 Mon Sep 17 00:00:00 2001 From: Coolrune206 <71326864+Coolrune206@users.noreply.github.com> Date: Sun, 18 Dec 2022 03:14:56 +1000 Subject: [PATCH] You no longer weld damaged plating on harm intent (#19916) --- code/game/turfs/simulated/floor/plating.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index febdbdc4fcc..23b158f0b73 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -117,6 +117,8 @@ . = TRUE if(!I.tool_use_check(user, 0)) return + if(user.a_intent == INTENT_HARM) // no repairing on harm intent, so you can use the welder in a fight near damaged paneling without welding your eyes out + return if(unfastened) to_chat(user, "You start removing [src], exposing space after you're done!") if(!I.use_tool(src, user, 50, volume = I.tool_volume * 2)) //extra loud to let people know something's going down