From 79556c3e615e78bef44d4307b5ccbc0fc04922c8 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Fri, 23 Apr 2021 00:30:01 -0400 Subject: [PATCH] Allows you to repair trophy cases (the ones found in the library) (#58588) Apparently you haven't been able to repair these for the last four years. Fixes #27926 (Trophy cases being perma broken) All other display cases can be repaired, why shouldnt this one be able to. --- code/game/objects/structures/displaycase.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm index 31563e9a0fc..845780b2bfd 100644 --- a/code/game/objects/structures/displaycase.dm +++ b/code/game/objects/structures/displaycase.dm @@ -301,6 +301,8 @@ return if(user.combat_mode) return ..() + if(W.tool_behaviour == TOOL_WELDER && !broken) + return ..() if(user.is_holding_item_of_type(/obj/item/key/displaycase)) if(added_roundstart)