Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
tweak: File path handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan2139 committed Oct 28, 2024
1 parent 7416bf7 commit 5f80263
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sonorancad/submodules/ts3integration/sv_ts3integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ You should have received a copy of the GNU General Public License
along with this program in the file "LICENSE". If not, see <http://www.gnu.org/licenses/>.
*/
const { TeamSpeak, QueryProtocol } = require("ts3-nodejs-library");
const configFilePath = path.join(__dirname, "../../configuration/ts3integration_config.json");
const distFilePath = path.join(__dirname, "../../configuration/ts3integration_config.dist.json");
const configFilePath = path.join(GetResourcePath(GetCurrentResourceName()), "/configuration/ts3integration_config.json");
const distFilePath = path.join(GetResourcePath(GetCurrentResourceName()), "/configuration/ts3integration_config.dist.json");
var clientsToAdd = [];
var clientsToRemove = [];

Expand Down

0 comments on commit 5f80263

Please sign in to comment.