From 4c83adaaada31bd2c3ef245d9e7b7c90f9fe693f Mon Sep 17 00:00:00 2001 From: throwawayuseless Date: Sun, 25 May 2025 05:25:16 -0400 Subject: [PATCH] =?UTF-8?q?Real=20Fuel=20No=20Clickbait=C2=A9=20(#91304)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About The Pull Request Fixes #91299, by making plasma appear to be fuel for the purposes of checking how full the welder is. ## Why It's Good For The Game Bugg bad. Stealthy sabotage method being extremely obvious bad. ## Changelog :cl: fix: Plasma now contributes to the fuel gauge of rigged welders, making them less extremely obvious. /:cl: --------- Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> --- code/game/objects/items/tools/weldingtool.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index a860e340d8c..c1e322c610f 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -195,7 +195,7 @@ /// Returns the amount of fuel in the welder /obj/item/weldingtool/proc/get_fuel() - return reagents.get_reagent_amount(/datum/reagent/fuel) + return reagents.get_reagent_amount(/datum/reagent/fuel) + reagents.get_reagent_amount(/datum/reagent/toxin/plasma) /// Uses fuel from the welding tool. /obj/item/weldingtool/use(used = 0)