summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-13 06:39:55 -0700
committer8cy <[email protected]>2020-04-13 06:39:55 -0700
commit23138197e382e3b7e5432b2e8104416317246aa0 (patch)
tree6d5a8516fc31c2dfedf07a5f9b865facae50013e
parentchange bot.js path, v4.0.6 (diff)
downloads5nical-23138197e382e3b7e5432b2e8104416317246aa0.tar.xz
s5nical-23138197e382e3b7e5432b2e8104416317246aa0.zip
tbh idk, v4.0.7
-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.js2
-rw-r--r--tsconfig.json2
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
diff --git a/src/app.js b/src/app.js
index 8261b65..843db70 100644
--- a/src/app.js
+++ b/src/app.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/**/*"
]
}