From d53d19bb4d3999ce00591bfcd9588a19fdfa3ef9 Mon Sep 17 00:00:00 2001 From: MrGeorgen Date: Fri, 5 Feb 2021 15:42:38 +0100 Subject: [PATCH] fixed modPath function --- src/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.js b/src/util.js index ccc8db0..0a07ff3 100644 --- a/src/util.js +++ b/src/util.js @@ -1,5 +1,5 @@ function modPath(mod) { - return `mods${mod.filename}`; + return `mods/${mod.filename}`; } module.exports = {