From d115ba214b3a27cff386049b2fc04296f4c1ec5b Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sun, 12 Jun 2022 18:55:46 +0200 Subject: [PATCH] Fix netload example failing --- commands/misc/netload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/netload.js b/commands/misc/netload.js index 275bbe9..48a1472 100644 --- a/commands/misc/netload.js +++ b/commands/misc/netload.js @@ -31,7 +31,7 @@ module.exports = { } if (args[0] == "example") { - let example = fs.readFileSync("../.example") + let example = fs.readFileSync('commands/.example') message.channel.send(`\`\`\`js\n${example}\n\`\`\``) return;