Skip to content

Commit

Permalink
Merge pull request #116 from Quelu/feature/fix-cof-integration
Browse files Browse the repository at this point in the history
Use new config names for cof
  • Loading branch information
Varriount authored Sep 17, 2021
2 parents 2dc797a + 66210c3 commit 4b3bb0b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lmrtfy.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ class LMRTFY {
break;

case 'cof':
LMRTFY.saveRollMethod = 'rollAbility';
LMRTFY.abilityRollMethod = 'rollAbility';
LMRTFY.skillRollMethod = 'rollAbility';
LMRTFY.abilities = CONFIG.COF.abilities;
LMRTFY.saveRollMethod = 'rollStat';
LMRTFY.abilityRollMethod = 'rollStat';
LMRTFY.skillRollMethod = 'rollStat';
LMRTFY.abilities = CONFIG.COF.stats;
LMRTFY.skills = CONFIG.COF.skills;
LMRTFY.normalRollEvent = { shiftKey: false, altKey: false, ctrlKey: false };
LMRTFY.advantageRollEvent = { shiftKey: false, altKey: false, ctrlKey: false };
LMRTFY.disadvantageRollEvent = { shiftKey: false, altKey: false, ctrlKey: false };
LMRTFY.specialRolls = {};
LMRTFY.abilityAbbreviations = CONFIG.COF.abilityAbbreviations;
LMRTFY.abilityAbbreviations = CONFIG.COF.statAbbreviations;
LMRTFY.modIdentifier = 'mod';
LMRTFY.abilityModifiers = LMRTFY.parseAbilityModifiers();
break;
Expand Down

0 comments on commit 4b3bb0b

Please sign in to comment.