Skip to content

Commit

Permalink
const
Browse files Browse the repository at this point in the history
  • Loading branch information
etiquettestartshere committed Mar 1, 2024
1 parent 4bebdf5 commit 1c01af1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "effectivetray",
"title": "Effective Tray",
"version": "1.0.1",
"version": "1.0.2",
"compatibility": {
"minimum": "11",
"verified": "11"
Expand Down
3 changes: 1 addition & 2 deletions scripts/effective-tray.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ export class effectiveTray {
if (old) for (const oldEffect of old) oldEffect.remove();
const tooltip = (game.settings.get(MODULE, "allowTarget")) ? "EFFECTIVETRAY.EffectsApplyTokens" : "DND5E.EffectsApplyTokens";
for (const effect of effects) {
let label;
effect.duration.duration ? label = effect.duration.label : label = "";
const label = effect.duration.duration ? effect.duration.label : "";
const contents = `
<li class="effect" data-uuid=${uuid}.ActiveEffect.${effect._id} data-transferred=${effect.transfer}>
<img class="gold-icon" alt=${effect.name} src=${effect.icon}>
Expand Down

0 comments on commit 1c01af1

Please sign in to comment.