From cce10711253969f00ec2dc63ee837f2c091e8d8f Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Wed, 13 Jul 2022 16:17:17 -0400 Subject: [PATCH] Moves unholy water to have stamina regen (#18349) * that's an unholy amount of damage * Update code/modules/reagents/chemistry/reagents/water.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> --- code/modules/reagents/chemistry/reagents/water.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/water.dm b/code/modules/reagents/chemistry/reagents/water.dm index b0852e0e2e9..804c43aa4d4 100644 --- a/code/modules/reagents/chemistry/reagents/water.dm +++ b/code/modules/reagents/chemistry/reagents/water.dm @@ -347,10 +347,11 @@ M.AdjustStunned(-4 SECONDS) M.AdjustWeakened(-4 SECONDS) M.AdjustKnockDown(-4 SECONDS) - update_flags |= M.adjustToxLoss(-2, FALSE) - update_flags |= M.adjustFireLoss(-2, FALSE) - update_flags |= M.adjustOxyLoss(-2, FALSE) - update_flags |= M.adjustBruteLoss(-2, FALSE) + update_flags |= M.adjustStaminaLoss(-25, FALSE) + update_flags |= M.adjustToxLoss(-1, FALSE) + update_flags |= M.adjustFireLoss(-1, FALSE) + update_flags |= M.adjustOxyLoss(-1, FALSE) + update_flags |= M.adjustBruteLoss(-1, FALSE) else update_flags |= M.adjustBrainLoss(3, FALSE) update_flags |= M.adjustToxLoss(1, FALSE)