Skip to content

Commit

Permalink
Fixed battle point value description
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Aug 4, 2024
1 parent 0217d2a commit b82efac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-descriptor/src/Buff/describeValue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ function describeDataVal(
partials.push(new ParticlePartial(" /Stack"));
}

if (dataVal.BattlePointValue) {
partials.push(dataVal.BattlePointValue);
if (dataVal.BattlePointValue !== undefined) {
partials.push(new ValuePartial(valueType, dataVal.BattlePointValue));
}

return partials.length > 0 ? new Descriptor(partials) : undefined;
Expand Down

0 comments on commit b82efac

Please sign in to comment.