diff options
| author | 8cy <[email protected]> | 2020-04-15 08:14:53 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-15 08:14:53 -0700 |
| commit | beb0e14ae13b8cb232d0f2b48571eeac27be7e01 (patch) | |
| tree | 094d0f5eeaef6891349c459a4ba99881b57ead8b /src | |
| parent | The Uwulapse, v6.0.0 (diff) | |
| download | dep-core-beb0e14ae13b8cb232d0f2b48571eeac27be7e01.tar.xz dep-core-beb0e14ae13b8cb232d0f2b48571eeac27be7e01.zip | |
fix path for bot.js, v6.0.1
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ const { ShardingManager } = require('discord.js'); const config = require('./config.json'); -//const manager = new ShardingManager('./dist/bot.js', { token: config['secret'] }); -const manager = new ShardingManager('./bot.js', { token: config['secret'] }); +const manager = new ShardingManager('./dist/bot.js', { token: config['secret'] }); +//const manager = new ShardingManager('./bot.js', { token: config['secret'] }); manager.spawn(); console.log('Connecting...'); |