diff --git a/index.js b/index.js index 8bcd5a48..e8d26cf6 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,7 @@ +const fs = require('fs'); +if (!fs.existsSync('./config.json')) { + throw new Error('I could not find config.json, are you sure you have it?'); +} const { AkairoClient, CommandHandler, InhibitorHandler, ListenerHandler } = require('discord-akairo'); const { token, prefix, ownerID } = require('./config.json'); require('console-stamp')(console, '[HH:MM:ss]');