From a8f5bbc2fba61e9bccc920f6ef5887b5a2da7847 Mon Sep 17 00:00:00 2001 From: Fikou Date: Tue, 7 Jul 2020 22:00:16 +0200 Subject: [PATCH] manly dorf now doesnt work on alcohol tolerance, ups boozepower for dorfs (#51940) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * manly dorf now still gets you drunk with dorf mutation * ok i guess * Update code/modules/reagents/chemistry/reagents/alcohol_reagents.dm YEAH OK MR COBBLESTONE I WILL DO IT!!!!!!!!! Co-authored-by: ラッピ from PSO2 <11748095+ExcessiveUseOfCobblestone@users.noreply.github.com> Co-authored-by: ラッピ from PSO2 <11748095+ExcessiveUseOfCobblestone@users.noreply.github.com> --- code/modules/reagents/chemistry/reagents/alcohol_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index c9477313000..e77a51fcd98 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -734,9 +734,9 @@ All effects don't start immediately, but rather get worse over time; the rate is /datum/reagent/consumable/ethanol/manly_dorf/on_mob_metabolize(mob/living/M) if(ishuman(M)) var/mob/living/carbon/human/H = M - if(HAS_TRAIT(H, TRAIT_DWARF) || HAS_TRAIT(H, TRAIT_ALCOHOL_TOLERANCE)) + if(HAS_TRAIT(H, TRAIT_DWARF)) to_chat(H, "Now THAT is MANLY!") - boozepwr = 5 //We've had worse in the mines + boozepwr = 50 // will still smash but not as much. dorf_mode = TRUE /datum/reagent/consumable/ethanol/manly_dorf/on_mob_life(mob/living/carbon/M)