Skip to content

Commit

Permalink
Fixed issue with Minion talentList being on the wrong location (#1151)
Browse files Browse the repository at this point in the history
  • Loading branch information
tucker87 authored Jan 11, 2023
1 parent 18eaa32 commit 520d261
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
2 changes: 1 addition & 1 deletion modules/actors/actor-ffg.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class ActorFFG extends Actor {
return comparison;
});
}
data.talentList = globalTalentList;
actorData.talentList = globalTalentList;
}

/**
Expand Down
15 changes: 0 additions & 15 deletions templates/parts/actor/ffg-talents.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,5 @@
</div>
</li>
{{/each}}
{{#each data.talentList as |item id|}}
<li class="item specialization-talent-item flexrow" data-item-id="{{item.itemId}}">
<div class="item-name">
{{item.name}}
</div>
<div>{{localize item.activation}}</div>
<div>{{item.rank}}</div>
{{#if (ne ../this.FFG.theme "starwars" )}}
<div>{{item.tier}}</div>
{{/if}}
<div class="item-controls">
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
</div>
</li>
{{/each}}
</ul>
</ul>

0 comments on commit 520d261

Please sign in to comment.