Skip to content

Commit

Permalink
Merge pull request #18 from League-of-Fabulous-Developers/dev
Browse files Browse the repository at this point in the history
Various template updates and fixes to ui
  • Loading branch information
spyrella authored Dec 2, 2023
2 parents 040a43e + f4949c3 commit 9717cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/sheets/actor-standard-sheet.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -835,8 +835,8 @@ export class FUStandardActorSheet extends ActorSheet {
switch (rollType) {
case 'roll-check':
// Get the selected primary and secondary attributes for rollcheck
primaryAttributeRef = $('select[name="system.rollInfo.attributes.primary.value"]').val();
secondaryAttributeRef = $('select[name="system.rollInfo.attributes.secondary.value"]').val();
primaryAttributeRef = $(this.form).find('select[name="system.rollInfo.attributes.primary.value"]').val();
secondaryAttributeRef = $(this.form).find('select[name="system.rollInfo.attributes.secondary.value"]').val();
title = game.i18n.localize('FU.RollCheck');
bonuses = 0;
break;
Expand Down

0 comments on commit 9717cb6

Please sign in to comment.