Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPrimate committed Nov 26, 2023
1 parent c6e3ab2 commit 3acd534
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.2

- More tweaks to ignore self auras for 5e.

# 0.9.1

- Effects which ignored self would not work in SWADE.
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "https://github.com/kandashi/Active-Auras",
"bugs": "https://github.com/kandashi/Active-Auras/issues",
"flags": {},
"version": "0.9.1",
"version": "0.9.2",
"compatibility": {
"minimum": 11,
"verified": 11
Expand Down
6 changes: 3 additions & 3 deletions src/lib/AAHelpers.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@ export class AAHelpers {
})
);
// these systems override isSuppressed and we need to change it
if (["dnd5e", "sw5e"].includes(game.system.id)) {
args[1].effect.isSuppressed = true;
}
// if (["dnd5e", "sw5e"].includes(game.system.id)) {
// args[1].effect.isSuppressed = true;
// }
args[1].key = "";
args[1].value = "";
return wrapped(...args);
Expand Down

0 comments on commit 3acd534

Please sign in to comment.