Skip to content

Commit

Permalink
Move macro scripts to scripts dir
Browse files Browse the repository at this point in the history
  • Loading branch information
JamzTheMan committed Feb 25, 2024
1 parent e602660 commit cd9e4a5
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions scripts/hooks-for-nerps.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import {adjustShieldHP} from "../macros/adjust-shield-hp.js";
import {combineDamage} from "../macros/combine-damage.js";
import {createGenericTimer} from "../macros/create-generic-timer.js";
import {explorationActivities} from "../macros/exploration-activities.js";
import {exportActorWithImages} from "../macros/export-actor-with-images.js";
import {measureTokenDistance} from "../macros/measure-token-distances.js";
import {repairTargetsShield} from "../macros/repair-targets-shield.js";
import {rollPerceptionChecks} from "../macros/roll-perception-checks.js";
import {setTokenBarsAndNameplates} from "../macros/set-token-bars-and-nameplates.js";
import {counteractCheck} from "../macros/counteract-check.js";
import {adjustShieldHP} from "./macros/adjust-shield-hp.js";
import {combineDamage} from "./macros/combine-damage.js";
import {createGenericTimer} from "./macros/create-generic-timer.js";
import {explorationActivities} from "./macros/exploration-activities.js";
import {exportActorWithImages} from "./macros/export-actor-with-images.js";
import {measureTokenDistance} from "./macros/measure-token-distances.js";
import {repairTargetsShield} from "./macros/repair-targets-shield.js";
import {rollPerceptionChecks} from "./macros/roll-perception-checks.js";
import {setTokenBarsAndNameplates} from "./macros/set-token-bars-and-nameplates.js";
import {counteractCheck} from "./macros/counteract-check.js";
import {JOURNAL_MARKER, MODULE_NAME} from "./constants.js";
import {registerSettings} from "./settings-for-nerps.js";
import {getSetting, setSetting} from "./utils/extensions.js";
import {getSetting} from "./utils/extensions.js";
import {NerpsForFoundry, log} from "./nerps-for-foundry.js";
import {autoCorrectJournalContent} from "./autocorrect-journal-content.js"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {log} from "../scripts/nerps-for-foundry.js";
import {log} from "../nerps-for-foundry.js";

export async function explorationActivities(token) {

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {log} from "../scripts/nerps-for-foundry.js";
import {log} from "../nerps-for-foundry.js";

export function repairTargetsShield(token) {
ui.notifications.info("Add Reforging shield to function!")
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit cd9e4a5

Please sign in to comment.