From b08cb86bd619dc0b91c6042fe5d3fb72cd015704 Mon Sep 17 00:00:00 2001 From: Alien <68290943+alien3301@users.noreply.github.com> Date: Fri, 7 Nov 2025 15:27:26 +0200 Subject: [PATCH] Spaceproof plasmaman EVA suits from cargo can have their extinguisher properly refueled (#93812) ## About The Pull Request Refueling them now gives them 10 charges like it's supposed to. You cant reduce it's charges by refueling it now ## Why It's Good For The Game Fix bug ## Changelog :cl: Cat fix: Plasmaman EVA suits from cargo can have their extinguisher refueled fully now /:cl: --------- Co-authored-by: John Doe Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/modules/clothing/spacesuits/plasmamen.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index d75e5407798..97eb723c77e 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -59,11 +59,11 @@ if (!istype(tool, /obj/item/extinguisher_refill)) return - if (extinguishes_left == 5) + if (extinguishes_left == initial(extinguishes_left)) to_chat(user, span_notice("The inbuilt extinguisher is full.")) return ITEM_INTERACT_BLOCKING - extinguishes_left = 5 + extinguishes_left = initial(extinguishes_left) to_chat(user, span_notice("You refill the suit's built-in extinguisher, using up the cartridge.")) check_fire_state() qdel(tool)