From c5bfe85ff7d5fd39b3033a8adfa3f7031bafbb8c Mon Sep 17 00:00:00 2001 From: The0bserver Date: Sun, 23 Jan 2022 22:42:14 -0500 Subject: [PATCH] tweak --- code/modules/hydroponics/seedtypes/ambrosia.dm | 2 +- code/modules/reagents/reagents/medicine.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/seedtypes/ambrosia.dm b/code/modules/hydroponics/seedtypes/ambrosia.dm index b9764bf19e..4bc9f5ca93 100644 --- a/code/modules/hydroponics/seedtypes/ambrosia.dm +++ b/code/modules/hydroponics/seedtypes/ambrosia.dm @@ -58,4 +58,4 @@ set_trait(TRAIT_BIOLUM,1) set_trait(TRAIT_BIOLUM_COLOUR,"#ffb500") set_trait(TRAIT_PRODUCT_COLOUR, "#ffee00") - set_trait(TRAIT_PLANT_COLOR,"#f3ba2b") \ No newline at end of file + set_trait(TRAIT_PLANT_COLOUR,"#f3ba2b") \ No newline at end of file diff --git a/code/modules/reagents/reagents/medicine.dm b/code/modules/reagents/reagents/medicine.dm index 4ea96257a7..89f2a5ad2c 100644 --- a/code/modules/reagents/reagents/medicine.dm +++ b/code/modules/reagents/reagents/medicine.dm @@ -1514,11 +1514,11 @@ /datum/reagent/earthsblood/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.adjustBruteLoss (-3 * removed) - M.adjustBurnLoss (-3 * removed) + M.adjustFireLoss (-3 * removed) M.adjustOxyLoss(-10 * removed) M.adjustToxLoss(-3 * removed) M.adjustCloneLoss(-1 * removed) M.druggy = max(M.druggy, 20) M.make_jittery (20) M.hallucination = max(M.hallucination, 2) - M.adjustBrainLoss = (1 * removed) //your life for your mind. an echange \ No newline at end of file + M.adjustBrainLoss(0.5 * removed) //your life for your mind. An exchange made willingly, depending how dire. \ No newline at end of file