Skip to content
This repository has been archived by the owner on Jul 10, 2021. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
espositos committed Nov 4, 2020
2 parents f34d848 + b8c8147 commit 61af7ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.8.13] 2020-11-04
### Bugfix
- PF1 - Check for 'passive' feats

## [0.8.12] 2020-11-04
### Bugfix
- DND5e - Consume tip on action would show nothing if value was 0
Expand Down
2 changes: 1 addition & 1 deletion scripts/actions/pf1/pf1-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export class ActionHandlerPf1 extends ActionHandler {

let feat = this._buildItem(tokenId, actor, macroType, f);

if (!activationType || activationType === '') {
if (!activationType || activationType === '' || activationType === 'passive') {
passive.actions.push(feat);
return;
}
Expand Down

0 comments on commit 61af7ae

Please sign in to comment.