diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index bbc44730b6..a8d5c3d277 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -2279,15 +2279,16 @@ All effects don't start immediately, but rather get worse over time; the rate is //////////////////// /datum/reagent/consumable/ethanol/species_drink var/species_required - var/disgust = 25 + var/disgust = 26 boozepwr = 50 -/datum/reagent/consumable/ethanol/species_drink/on_mob_life(mob/living/carbon/C) - if(C.dna.species && C.dna.species.species_category == species_required) //species have a species_category variable that refers to one of the drinks - quality = RACE_DRINK - else - C.adjust_disgust(disgust) - return ..() +/datum/reagent/consumable/ethanol/species_drink/reaction_mob(mob/living/carbon/C, method=TOUCH) + if(method == INGEST) + if(C?.dna?.species?.species_category == species_required) //species have a species_category variable that refers to one of the drinks + quality = RACE_DRINK + else + C.adjust_disgust(disgust) + return ..() /datum/reagent/consumable/ethanol/species_drink/coldscales name = "Coldscales"