From baf4529e529017f3c67dcb1d578dd5ec210247a8 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Wed, 10 Jul 2019 18:32:10 -0400 Subject: [PATCH] Update other_reagents.dm --- .../reagents/chemistry/reagents/other_reagents.dm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 95310d0500..88b1334aad 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -317,7 +317,7 @@ /datum/reagent/fuel/holyoil //Its oil name = "Zelus Oil" id = "holyoil" - description = "Oil blessed by a grater being." + description = "Oil blessed by a greater being." taste_description = "metallic oil" /datum/reagent/fuel/holyoil/on_mob_life(mob/living/carbon/M) @@ -336,16 +336,17 @@ M.AdjustStun(10, 0) M.AdjustKnockdown(20, 0) M.adjustStaminaLoss(15, 0) - else //Were not mean - M.adjustToxLoss(3, 0) - M.adjustOxyLoss(2, 0) - M.adjustStaminaLoss(10, 0) + else //Were not mean + M.adjustToxLoss(3, 0) + M.adjustOxyLoss(2, 0) + M.adjustStaminaLoss(10, 0) holder.remove_reagent(id, 1) return TRUE //We only get 30u to start with... /datum/reagent/fuel/holyoil/reaction_obj(obj/O, reac_volume) + . = ..() if(istype(O, /obj/item/stack/sheet/metal)) var/obj/item/stack/sheet/metal/M = O reac_volume = min(reac_volume, M.amount)