diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm index b2a1456e141..31bb6307655 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm @@ -175,10 +175,10 @@ var/obj/item/organ/internal/parasite/P = M.internal_organs_by_name["blackkois"] if(!has_valid_aug && (alien == IS_VAURCA || (istype(P) && P.stage >= 3)))//Vaurca are damaged instead of getting nutrients, but they can still get drunk - M.adjustToxLoss(12 * removed * (strength / 100)) + M.adjustToxLoss(3 * removed * (strength / 100)) if (!has_valid_aug && alien == IS_UNATHI) //unathi are poisoned by alcohol as well - M.adjustToxLoss(12 * removed * (strength / 100)) + 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 diff --git a/html/changelogs/crosarius-ethanoltoxicity.yml b/html/changelogs/crosarius-ethanoltoxicity.yml new file mode 100644 index 00000000000..437641aa8ed --- /dev/null +++ b/html/changelogs/crosarius-ethanoltoxicity.yml @@ -0,0 +1,6 @@ +author: Crosarius + +delete-after: True + +changes: + - qol: "Nerfs ethanol toxicity to Unathi and Vaurca."