Skip to content

Commit 5c1ca01

Browse files
authored
Fixes ethylredoxrazine; makes ethanol scannable (#7135)
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request As title. I should atomize these I might be stupid. It's fine. ## Why It's Good For The Game Ethylredoxrazine should be purging ethanol from blood, not just the stomach; that's the intent. Ethanol being scannable by e.g. circuits is also, in fact, the intent, or at least my intent. ## Changelog <!-- If your PR modifies aspects of the game that can be concretely observed by players or admins you should add a changelog. If your change does NOT meet this description, remove this section. Be sure to properly mark your PRs to prevent unnecessary GBP loss. You can read up on GBP and it's effects on PRs in the tgstation guides for contributors. Please note that maintainers freely reserve the right to remove and add tags should they deem it appropriate. You can attempt to finagle the system all you want, but it's best to shoot for clear communication right off the bat. --> :cl: tweak: Ethanol can be scanned by lower tier scanners fix: Ethylredoxrazine purges ethanol from blood properly /:cl: <!-- Both :cl:'s are required for the changelog to work! You can put your name to the right of the first :cl: if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
1 parent 71e9b97 commit 5c1ca01

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

code/modules/reagents/chemistry/reagents/Chemistry-Reagents-Medicine.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@
10621062
for(var/datum/reagent/ethanol/ethanol_filter in M.ingested.get_reagent_datums())
10631063
M.ingested.remove_reagent(ethanol_filter.id, removed * 30)
10641064
for(var/datum/reagent/ethanol/ethanol_filter in M.bloodstr.get_reagent_datums())
1065-
M.ingested.remove_reagent(ethanol_filter.id, removed * 20)
1065+
M.bloodstr.remove_reagent(ethanol_filter.id, removed * 20)
10661066

10671067
/datum/reagent/hyronalin
10681068
name = "Hyronalin"

code/modules/reagents/chemistry/reagents/core/ethanol.dm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
ingest_met = REM * 5
1414

15+
scannable = TRUE
16+
1517
var/nutriment_factor = 0
1618
var/hydration_factor = 0
1719
var/proof = 200

0 commit comments

Comments
 (0)