Real Fuel No Clickbait© (#91304)

## 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
🆑
fix: Plasma now contributes to the fuel gauge of rigged welders, making
them less extremely obvious.
/🆑

---------

Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com>
This commit is contained in:
throwawayuseless
2025-05-25 12:25:16 +03:00
committed by GitHub
co-authored by SyncIt21
parent 2504af1417
commit 4c83adaaad
+1 -1
View File
@@ -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)