Skip to content

Commit

Permalink
Fix Furina C1 Fanfare Limit (#1355)
Browse files Browse the repository at this point in the history
  • Loading branch information
PolomoPT authored Dec 1, 2023
1 parent fb67cbe commit 140e8ac
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/frontend/src/app/Data/Characters/Furina/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const [condBurstFanfarePath, condBurstFanfare] = cond(key, 'burstFanfare')
const burstFanfareArr = range(50, dm.burst.maxFanfare, 50)
const c1FanfareArr = range(
50,
dm.burst.maxFanfare + dm.constellation1.bonusFanfare,
dm.burst.maxFanfare + dm.constellation1.fanfareLimitInc,
50
)
const clampedFanfareNum = lookup(
Expand Down Expand Up @@ -618,8 +618,10 @@ const sheet: ICharacterSheet = {
value: (data) =>
data.get(input.constellation).value >= 1
? `${dm.burst.maxFanfare} + ${
dm.constellation1.bonusFanfare
} = ${dm.burst.maxFanfare + dm.constellation1.bonusFanfare}`
dm.constellation1.fanfareLimitInc
} = ${
dm.burst.maxFanfare + dm.constellation1.fanfareLimitInc
}`
: dm.burst.maxFanfare,
},
{
Expand Down

0 comments on commit 140e8ac

Please sign in to comment.