Skip to content

Commit

Permalink
Make the spell tooltip more consistent with the weapon one (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
rayners authored Jun 2, 2024
1 parent 449d300 commit cd301bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ts/dragonbane-spells-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class DragonbaneSpellButton extends ARGON.MAIN.BUTTONS.ItemButton {
}
return {
title: this.item.name,
subtitle: this.item.system.school,
subtitle: `${this.item.system.school}: ${this.item.system.skillValue}`,
description: this.item.system.description,
details,
properties: [
Expand All @@ -115,7 +115,6 @@ class DragonbaneSpellButton extends ARGON.MAIN.BUTTONS.ItemButton {
.split(/\s*,\s*/)
.map((r) => ({ label: r, secondary: true })),
],
footerText: `Skill ${this.item.system.skillValue}`,
};
}

Expand Down

0 comments on commit cd301bb

Please sign in to comment.