Skip to content

Commit

Permalink
Update logic.js
Browse files Browse the repository at this point in the history
Related to #224
  • Loading branch information
mclemente committed Dec 25, 2023
1 parent 6e4231e commit 14df204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class HealthEstimate {
try {
if (hovered) {
const { desc, color, stroke } = this.getEstimation(token);
if (desc) {
if (desc !== undefined) {
const yPosition = token.tooltip.y + this.height;
const position = { a: 0, b: 1, c: 2 }[this.position];
if (!token.healthEstimate?._texture) {
Expand Down

0 comments on commit 14df204

Please sign in to comment.