diff options
| -rw-r--r-- | fix/voice/fart.js (renamed from .fix/voice/fart.js) | 0 | ||||
| -rw-r--r-- | fix/voice/moan.js (renamed from .fix/voice/moan.js) | 0 | ||||
| -rw-r--r-- | fix/voice/squeak.js (renamed from .fix/voice/squeak.js) | 0 | ||||
| -rw-r--r-- | fix/voice/wahoo.js (renamed from .fix/voice/wahoo.js) | 0 | ||||
| -rw-r--r-- | src/app.js | 2 | ||||
| -rw-r--r-- | tsconfig.json | 2 |
6 files changed, 2 insertions, 2 deletions
diff --git a/.fix/voice/fart.js b/fix/voice/fart.js index a5f8a21..a5f8a21 100644 --- a/.fix/voice/fart.js +++ b/fix/voice/fart.js diff --git a/.fix/voice/moan.js b/fix/voice/moan.js index c5d0f96..c5d0f96 100644 --- a/.fix/voice/moan.js +++ b/fix/voice/moan.js diff --git a/.fix/voice/squeak.js b/fix/voice/squeak.js index c25547d..c25547d 100644 --- a/.fix/voice/squeak.js +++ b/fix/voice/squeak.js diff --git a/.fix/voice/wahoo.js b/fix/voice/wahoo.js index 25424f5..25424f5 100644 --- a/.fix/voice/wahoo.js +++ b/fix/voice/wahoo.js @@ -1,6 +1,6 @@ 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'] }); manager.spawn(); manager.on('shardCreate', shard => console.log(`Launched shard: ${shard.id}`));
\ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index daa1c7a..a408deb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -65,6 +65,6 @@ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, "include": [ - "src/**/*", "fix/voice/wahoo.js", "fix/voice/squeak.js", "fix/voice/moan.js", "fix/voice/fart.js" + "./src/**/*" ] } |