From b0c9d87635cfb1d56ae643a6d8fac409e3662c88 Mon Sep 17 00:00:00 2001 From: Crosarius <30341877+Crosarius@users.noreply.github.com> Date: Thu, 3 Oct 2024 01:05:56 +1000 Subject: [PATCH] Ethanol No Longer Makes Unathi Automatically Vomit (#19953) After implementing this feature a few months ago, I've come to realize that the effect this has isn't really what I intended, and it doesn't really make much sense. Ethanol will still be toxic to Unathi. Co-authored-by: Crozarius --- .../Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm | 4 ---- html/changelogs/crozarius-unathialcoholpuke.yml | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 html/changelogs/crozarius-unathialcoholpuke.yml diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm index f82f0f81d6b..1c945503971 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm @@ -184,10 +184,6 @@ ABSTRACT_TYPE(/singleton/reagent/alcohol) if (!has_valid_aug && alien == IS_UNATHI) //unathi are poisoned by alcohol as well M.adjustToxLoss(3 * removed * (strength / 100)) - if(!M.lastpuke) - to_chat(M, SPAN_WARNING("Your gizzard lurches as the alcohol burns its way down your gullet!"))//Make it clear that you should not be drinking this. - var/mob/living/carbon/human/H = M - H.delayed_vomit() if (has_valid_aug | alien != IS_UNATHI) M.intoxication += (strength / 100) * removed * 6 diff --git a/html/changelogs/crozarius-unathialcoholpuke.yml b/html/changelogs/crozarius-unathialcoholpuke.yml new file mode 100644 index 00000000000..d7206312771 --- /dev/null +++ b/html/changelogs/crozarius-unathialcoholpuke.yml @@ -0,0 +1,6 @@ + +author: Crozarius + +delete-after: True +changes: + - qol: "Ethanol no longer automatically makes Unathi vomit."