Skip to content

Commit

Permalink
fix(slots): Don't decrement for repeat casts (requires 9.2.2)
Browse files Browse the repository at this point in the history
closes #329
  • Loading branch information
symposion committed Feb 25, 2017
1 parent 4da25ce commit 53314f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shaped-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ function ShapedScripts(logger, myState, roll20, parser, entityLookup, reporter)

this.handleSpellCast = function handleSpellCast(options) {
if (options.ritual || !myState.config.sheetEnhancements.autoSpellSlots ||
options.spellLevel === 'CANTRIP') {
options.spellLevel === 'CANTRIP' || options.spellRepeat) {
return;
}

Expand Down

0 comments on commit 53314f7

Please sign in to comment.