Package fix again #14
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -13,7 +13,7 @@ const requiredModules = [
|
||||||
];
|
];
|
||||||
let config;
|
let config;
|
||||||
if (fs.existsSync("./config/config.json")) {
|
if (fs.existsSync("./config/config.json")) {
|
||||||
config = require("./config/config.json");
|
config = JSON.parse(fs.readFileSync("./config/config.json"));
|
||||||
} else {
|
} else {
|
||||||
console.log("[Config] Config file doesn't exist! You probably haven't copied the example config in the config directory.");
|
console.log("[Config] Config file doesn't exist! You probably haven't copied the example config in the config directory.");
|
||||||
console.log("[Config] Exiting...");
|
console.log("[Config] Exiting...");
|
||||||
|
|
Loading…
Reference in a new issue