From 07c3e30a9524c168d43b295d2085c8e04f9b3cef Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 28 Jan 2023 14:51:19 -0500 Subject: [PATCH] Fixed blade fever reducing damage instead of increasing it --- common/src/comp/buff.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/comp/buff.rs b/common/src/comp/buff.rs index cc307fc2d2..12cae0193f 100644 --- a/common/src/comp/buff.rs +++ b/common/src/comp/buff.rs @@ -392,7 +392,7 @@ impl Buff { BuffKind::PotionSickness => vec![BuffEffect::HealReduction(data.strength)], BuffKind::Reckless => vec![ BuffEffect::DamageReduction(-data.strength), - BuffEffect::AttackDamage(data.strength), + BuffEffect::AttackDamage(1.0 + data.strength), ], }; let start_time = Time(time.0 + data.delay.map_or(0.0, |delay| delay.0));