From a2f932769abbc452a4a67de9486ec22b81cf102c Mon Sep 17 00:00:00 2001 From: Son-of-Space <63861499+Son-of-Space@users.noreply.github.com> Date: Sun, 5 Jun 2022 20:00:27 -0700 Subject: [PATCH] Fixes Unholy Water stun reduction being half as strong due to a copy+paste error (#67454) --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index ae7043ecf1f..7929c3ca88e 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -369,8 +369,8 @@ /datum/reagent/fuel/unholywater/on_mob_life(mob/living/carbon/M, delta_time, times_fired) if(IS_CULTIST(M)) - M.adjust_drowsyness(-5* REM * delta_time) - M.AdjustAllImmobility(-40 *REM* REM * delta_time) + M.adjust_drowsyness(-5 * REM * delta_time) + M.AdjustAllImmobility(-40 * REM * delta_time) M.adjustStaminaLoss(-10 * REM * delta_time, 0) M.adjustToxLoss(-2 * REM * delta_time, 0) M.adjustOxyLoss(-2 * REM * delta_time, 0)