diff --git a/scripts/helpers/animation/finishingMove.js b/scripts/helpers/animation/text/finishingMove.js similarity index 98% rename from scripts/helpers/animation/finishingMove.js rename to scripts/helpers/animation/text/finishingMove.js index e6a55cb..375d13d 100644 --- a/scripts/helpers/animation/finishingMove.js +++ b/scripts/helpers/animation/text/finishingMove.js @@ -1,4 +1,4 @@ -import { getSetting} from "../misc.js"; +import { getSetting} from "../../misc.js"; export async function createFinishingMoveAnimation(text) { let textColor = "black"; diff --git a/scripts/helpers/api.js b/scripts/helpers/api.js index 6d2bc8b..5358d5b 100644 --- a/scripts/helpers/api.js +++ b/scripts/helpers/api.js @@ -1,5 +1,5 @@ import { createCritAnimation } from "./animation/crit/critAnimation.js"; -import { createFinishingMoveAnimation } from "./animation/finishingMove.js"; +import { createFinishingMoveAnimation } from "./animation/text/finishingMove.js"; import { generateDamageScroll } from "./animation/generateDamageScroll.js"; import { generateRollScroll } from "./animation/generateRollScroll.js"; import { getDamageList } from "./rollTerms.js"; diff --git a/scripts/module.js b/scripts/module.js index 5f87f94..3e80c5a 100644 --- a/scripts/module.js +++ b/scripts/module.js @@ -1,5 +1,5 @@ import { createCritAnimation } from "./helpers/animation/crit/critAnimation.js"; -import { createFinishingMoveAnimation } from "./helpers/animation/finishingMove.js"; +import { createFinishingMoveAnimation } from "./helpers/animation/text/finishingMove.js"; import { generateDamageScroll } from "./helpers/animation/generateDamageScroll.js"; import { generateRollScroll } from "./helpers/animation/generateRollScroll.js"; import { shakeOnDamageToken } from "./helpers/animation/shakeOnDamageToken.js";