summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author8cy <[email protected]>2020-05-18 16:59:14 -0700
committer8cy <[email protected]>2020-05-18 16:59:14 -0700
commit204295100e9684c0d19452e4464f0b4e1033547a (patch)
tree241b7f8676ebd7b5ec56c3100a73037dc2b3f0ab /src
parentfix nsfw cmds, add rockpaperscissors (diff)
downloaddep-core-204295100e9684c0d19452e4464f0b4e1033547a.tar.xz
dep-core-204295100e9684c0d19452e4464f0b4e1033547a.zip
remove multipliers, add dev features
Diffstat (limited to 'src')
-rw-r--r--src/app.ts2
-rw-r--r--src/bot.ts3
-rw-r--r--src/config.json7
3 files changed, 6 insertions, 6 deletions
diff --git a/src/app.ts b/src/app.ts
index c7ca081..ccc76a5 100644
--- a/src/app.ts
+++ b/src/app.ts
@@ -1,7 +1,7 @@
import { ShardingManager } from 'discord.js';
import config from './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('./bot.js', { token: config['secret-dev'] });
manager.spawn();
console.log('\x1b[0m' + 'Connecting...');
diff --git a/src/bot.ts b/src/bot.ts
index f5e09ab..e826f53 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -148,4 +148,5 @@ client.on('message', async msg => {
}
});
-client.login(config['secret']); \ No newline at end of file
+client.login(config['secret']);
+//client.login(config['secret-dev']); \ No newline at end of file
diff --git a/src/config.json b/src/config.json
index d1b9638..e851126 100644
--- a/src/config.json
+++ b/src/config.json
@@ -1,8 +1,7 @@
{
"secret":"Njk5NDczMjYzOTk4MjcxNDg5.XpU5oQ.btZuxVudhNllSQY6CxrXXtMJm9A",
+ "secret-dev":"NzEyMDg4MzY5MjA2OTE5MjY5.XsMeEw.Yy0a8m2vZLDbPi7cZ8aqCalMR68",
"yt-api-key":"AIzaSyCeG1lQAeInv4vjFv_eTL9IFAFNdQC9Nk8",
- "version":"1.10.13",
- "fortniteTrackerNetworkToken": "4cf21f95-5f1a-412a-b4a7-e5424adc314a",
- "maxMultipler": 100,
- "minMultipler": 1.01
+ "version":"1.10.14",
+ "fortniteTrackerNetworkToken": "4cf21f95-5f1a-412a-b4a7-e5424adc314a"
} \ No newline at end of file