Skip to content

Commit

Permalink
Fix calculations
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Sep 12, 2024
1 parent 164681f commit 34ece7c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public async Task<IFieldUserStats> Calculate(IFieldUser input)
MDD = context.MDD.Apply(0),

PACC = pacc.Apply((int)(totalDEX * 1.2 + totalLUK) + context.ACC.IncBase),
MACC = pacc.Apply((int)(totalLUK * 1.2 + totalINT) + context.ACC.IncBase),
PEVA = pacc.Apply(totalLUK * 2 + totalDEX + context.EVA.IncBase),
MEVA = pacc.Apply(totalLUK * 2 + totalINT + context.EVA.IncBase),
MACC = macc.Apply((int)(totalLUK * 1.2 + totalINT) + context.ACC.IncBase),
PEVA = peva.Apply(totalLUK * 2 + totalDEX + context.EVA.IncBase),
MEVA = meva.Apply(totalLUK * 2 + totalINT + context.EVA.IncBase),

Craft = context.Craft.Apply(character.DEX + character.INT + character.LUK),
Speed = context.Speed.Apply(100),
Expand Down

0 comments on commit 34ece7c

Please sign in to comment.