summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-19 00:25:05 -0700
committer8cy <[email protected]>2020-04-19 00:25:05 -0700
commit47c8a1d751d8ea978bc320be7c48d4d52462956c (patch)
tree78e09d7d518422f19049e16d0dc668596e034a30 /src
parentupdate coinflip, v7.1.3 (diff)
downloaddep-core-47c8a1d751d8ea978bc320be7c48d4d52462956c.tar.xz
dep-core-47c8a1d751d8ea978bc320be7c48d4d52462956c.zip
launch web dash, v7.2.0
Diffstat (limited to 'src')
-rw-r--r--src/bot.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bot.ts b/src/bot.ts
index 1e18662..6ebb614 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -1,6 +1,6 @@
import config from './config.json';
import { CommandoClient } from 'discord.js-commando';
-//import WS from './ws/ws';
+import WS from './ws/ws';
import path from 'path';
import { Structures, MessageAttachment } from 'discord.js';
import emoji from 'emoji-random';
@@ -24,7 +24,7 @@ const client = new CommandoClient({
owner: '217348698294714370'
});
-//var ws = new WS('123456', 5665, client)
+var ws = new WS('123456', process.env.PORT, client)
client.registry
.registerDefaultTypes()
@@ -62,7 +62,7 @@ client.once('ready', () => {
console.log('\x1b[0m' + 'Servers: ' + '\x1b[36m' + `${client.guilds.cache.size}` + '\x1b[0m')
console.log()
- client.user.setActivity('uwu!help | v7.1.3', {
+ client.user.setActivity('uwu!help | v7.2.0', {
type: 'WATCHING'
});
});