Skip to content

Commit

Permalink
Fix BetaXivapiSource bug of HQ items cannot inc craft points
Browse files Browse the repository at this point in the history
  • Loading branch information
Tnze committed Oct 2, 2024
1 parent 1cff054 commit 17edb3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/recipe-manager/beta-xivapi-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ export class BetaXivApiRecipeSource {
case 11: // CP
enh.cp = itemFood.Value[i]
enh.cp_max = itemFood.Max[i]
enh.cp = itemFood.ValueHQ[i]
enh.cp_max = itemFood.MaxHQ[i]
enhHq.cp = itemFood.ValueHQ[i]
enhHq.cp_max = itemFood.MaxHQ[i]
break;
case 70: // Craftsmanship
enh.cm = itemFood.Value[i]
Expand Down

0 comments on commit 17edb3b

Please sign in to comment.