Skip to content

Commit

Permalink
Merge pull request #305 from Fachep/patch-3
Browse files Browse the repository at this point in the history
修复芙宁娜「沙龙成员」倍率加成错误
  • Loading branch information
wormtql authored Nov 9, 2023
2 parents df1594e + b1f27ef commit 4de077d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mona_core/src/character/characters/hydro/furina.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl CharacterTrait for Furina {

if s == E2 || s == E3 || s == E4 {
let bonus = 0.1 * hp_above50_count as f64;
builder.add_hp_ratio("「沙龙成员」加成", bonus);
builder.add_hp_ratio("「沙龙成员」加成", ratio * bonus);
if context.character_common_data.has_talent2 {
let hp = context.attribute.get_hp();
let factor = (hp / 1000.0).floor();
Expand Down

0 comments on commit 4de077d

Please sign in to comment.