From fa3166aa174f2f928ce50146d76a3be2baa731f6 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 30 Nov 2024 03:57:22 +0300 Subject: [PATCH] [NO GBP] Fixes plasmamen envirosuits being unrepairable (#88263) ## About The Pull Request Closes #88255 It ***was*** the refactor's fault ## Changelog :cl: fix: Fixed plasmamen envirosuits being unrepairable /:cl: --- code/modules/clothing/under/jobs/Plasmaman/civilian_service.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/under/jobs/Plasmaman/civilian_service.dm b/code/modules/clothing/under/jobs/Plasmaman/civilian_service.dm index c25f6f77929..71557e68a47 100644 --- a/code/modules/clothing/under/jobs/Plasmaman/civilian_service.dm +++ b/code/modules/clothing/under/jobs/Plasmaman/civilian_service.dm @@ -59,7 +59,7 @@ /obj/item/clothing/under/plasmaman/item_interaction(mob/living/user, obj/item/tool, list/modifiers) if (!istype(tool, /obj/item/extinguisher_refill)) - return + return ..() if (extinguishes_left == 5) to_chat(user, span_notice("The inbuilt extinguisher is full."))