From 57fdd756d305320bde9b30d7ba50963e126407ce Mon Sep 17 00:00:00 2001 From: KingkumaArt <69398298+KingkumaArt@users.noreply.github.com> Date: Wed, 26 Nov 2025 19:28:12 -0500 Subject: [PATCH] Ethereal Drink Charge Fix (#94108) ## About The Pull Request At some point, ethereal charge drain was reworked/balanced, but the three drinks that gave them charge never got their values changed. This pr makes sure voltaic wine and equivalents no longer require drinking generally unhealthy amounts to be able to charge oneself. ## Why It's Good For The Game Being unable to use the neat effect of your species' only drinks without killing your liver sucks. ## Changelog :cl: WebcomicArtist qol: Ethereal Drinks (Voltaic wine,telepole,pod tesla) now can feed etherials decently without needing them to risk blacking out. /:cl: --- .../reagents/chemistry/reagents/drinks/alcohol_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm index 4679cc4a307..f0d7f4289e1 100644 --- a/code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drinks/alcohol_reagents.dm @@ -2637,7 +2637,7 @@ var/mob/living/carbon/exposed_carbon = exposed_mob var/obj/item/organ/stomach/ethereal/stomach = exposed_carbon.get_organ_slot(ORGAN_SLOT_STOMACH) if(istype(stomach)) - stomach.adjust_charge(reac_volume * 5 * ETHEREAL_DISCHARGE_RATE) + stomach.adjust_charge(reac_volume * 10 * ETHEREAL_DISCHARGE_RATE) /datum/reagent/consumable/ethanol/telepole name = "Telepole" @@ -2657,7 +2657,7 @@ var/mob/living/carbon/exposed_carbon = exposed_mob var/obj/item/organ/stomach/ethereal/stomach = exposed_carbon.get_organ_slot(ORGAN_SLOT_STOMACH) if(istype(stomach)) - stomach.adjust_charge(reac_volume * 10 * ETHEREAL_DISCHARGE_RATE) + stomach.adjust_charge(reac_volume * 20 * ETHEREAL_DISCHARGE_RATE) /datum/reagent/consumable/ethanol/pod_tesla name = "Pod Tesla"