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));