From 65966dd0b7865d9d21648363f1294de3636ea6e2 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Thu, 25 Apr 2024 16:10:31 -0400 Subject: [PATCH] fix error; Update example_mod.js --- mods/example_mod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/example_mod.js b/mods/example_mod.js index ddf36999..7425dac0 100644 --- a/mods/example_mod.js +++ b/mods/example_mod.js @@ -68,7 +68,7 @@ runAfterLoad(function() { }); // Run if another mod is active -if (enabledMods.includes("test.js")) { +if (enabledMods.includes("mods/test.js")) { runAfterLoad(function() { // Your code here console.log("Hello World!");