diff --git a/bruno/neon-sprawl-server/npc-runtime-snapshot/Get npc runtime snapshot.bru b/bruno/neon-sprawl-server/npc-runtime-snapshot/Get npc runtime snapshot.bru index 2c6e36c..76d4ea5 100644 --- a/bruno/neon-sprawl-server/npc-runtime-snapshot/Get npc runtime snapshot.bru +++ b/bruno/neon-sprawl-server/npc-runtime-snapshot/Get npc runtime snapshot.bru @@ -5,7 +5,7 @@ meta { } script:pre-request { - const { resetPrototypeCombatTargets } = require("../scripts/combat-targets-reset-helper.js"); + const { resetPrototypeCombatTargets } = require("./scripts/combat-targets-reset-helper.js"); await resetPrototypeCombatTargets(bru); } diff --git a/bruno/neon-sprawl-server/npc-runtime-snapshot/Get snapshot after cast telegraph.bru b/bruno/neon-sprawl-server/npc-runtime-snapshot/Get snapshot after cast telegraph.bru index 77e75b6..7fd13de 100644 --- a/bruno/neon-sprawl-server/npc-runtime-snapshot/Get snapshot after cast telegraph.bru +++ b/bruno/neon-sprawl-server/npc-runtime-snapshot/Get snapshot after cast telegraph.bru @@ -11,7 +11,7 @@ docs { script:pre-request { const axios = require("axios"); - const { resetPrototypeCombatTargets } = require("../scripts/combat-targets-reset-helper.js"); + const { resetPrototypeCombatTargets } = require("./scripts/combat-targets-reset-helper.js"); const baseUrl = bru.getEnvVar("baseUrl") || bru.getVar("baseUrl"); const playerId = bru.getEnvVar("playerId") || bru.getVar("playerId"); const jsonHeaders = { headers: { "Content-Type": "application/json" } };