Skip to content

Commit

Permalink
Merge pull request #90 from PwQt/84-bug-ae-not-applying
Browse files Browse the repository at this point in the history
#84 fix
  • Loading branch information
PwQt authored Mar 19, 2024
2 parents 453715a + df3cfb7 commit 9cea7e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"dist/"
],
"rules": {
"prettier/prettier": "error",
"prettier/prettier": ["error", {
"endOfLine": "auto"
}],
"no-console": "off",
"no-plusplus": [
"error",
Expand Down
1 change: 0 additions & 1 deletion src/module.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import API from "./scripts/API/api.js";
import CONSTANTS from "./scripts/constants/constants.js";
import Logger from "./scripts/lib/Logger.js";
import { MagicItemActor } from "./scripts/magicitemactor.js";
import { MagicItemSheet } from "./scripts/magicitemsheet.js";
import { MagicItemTab } from "./scripts/magicItemtab.js";
Expand Down
1 change: 1 addition & 0 deletions src/scripts/magic-item-owned-entry/OwnedMagicItemFeat.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { AbstractOwnedMagicItemEntry } from "./AbstractOwnedMagicItemEntry";
import { MagicItemHelpers } from "../magic-item-helpers";

export class OwnedMagicItemFeat extends AbstractOwnedMagicItemEntry {
async roll() {
Expand Down
1 change: 1 addition & 0 deletions src/scripts/magic-item-owned-entry/OwnedMagicItemSpell.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Logger from "../lib/Logger";
import { MagicItemUpcastDialog } from "../magicitemupcastdialog";
import { AbstractOwnedMagicItemEntry } from "./AbstractOwnedMagicItemEntry";
import { MagicItemHelpers } from "../magic-item-helpers";

export class OwnedMagicItemSpell extends AbstractOwnedMagicItemEntry {
async roll() {
Expand Down

0 comments on commit 9cea7e0

Please sign in to comment.