diff --git a/common/src/states/basic_aura.rs b/common/src/states/basic_aura.rs index f5fc0ba926..5f3c8834e2 100644 --- a/common/src/states/basic_aura.rs +++ b/common/src/states/basic_aura.rs @@ -99,7 +99,7 @@ impl CharacterBehavior for Data { category: _, source: _, } => { - data.strength *= 1.0 + (self.combo_at_cast).log(2.0_f32); + data.strength *= 1.0 + self.combo_at_cast.max(1.0_f32).log(2.0_f32); }, } }