From a88004c4f6ffa2f4c2b842a41afd2e23a5a69859 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 23 Apr 2021 14:47:04 +0200 Subject: [PATCH] [MIRROR] Allows you to repair trophy cases (the ones found in the library) (#5107) * 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. * Allows you to repair trophy cases (the ones found in the library) Co-authored-by: Seth Scherer --- 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 e2347b9356d..d4c84d77b6d 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)