From f770fbbee99b98f3e316a1fb8f366ca14ca144f1 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 19 Jan 2021 18:02:59 -0600 Subject: [PATCH 1/3] Remove token from config.json --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 054d70b..885f58c 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { "prefix": "n!", - "token": "NTQwOTQxNjc5MDQ2Mjk1NTUz.XotbnA.0hllsNlr9hWaepl3KwB1Bhh5TnA", + "token": "", "ownerID": "309427567004483586" -} \ No newline at end of file +} From 0733744e642cfe66fc9bdca01929f4167bfdfc0e Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 19 Jan 2021 18:04:07 -0600 Subject: [PATCH 2/3] Change prefix to prevent conflict Changed prefix from n! to np! to prevent conflict with the stable builds. --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 885f58c..b8dd239 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "prefix": "n!", + "prefix": "np!", "token": "", "ownerID": "309427567004483586" } From d3166d26d3680ee36c01032fe9c67eeba03ff0d3 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 19 Jan 2021 18:09:50 -0600 Subject: [PATCH 3/3] Update start.js --- start.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/start.js b/start.js index 708d3ac..8049eaa 100644 --- a/start.js +++ b/start.js @@ -3,9 +3,9 @@ const fs = require('fs'); const Discord = require('discord.js'); const { prefix, token } = require('./config.json'); const os = require("os") -const version = "Test Release 21"; -const release = "anitrox_unstable" -const buildno = "404" +const version = "Public Test Release 1"; +const release = "anitrox_ptb" +const buildno = "430" console.log('Starting!') const client = new Discord.Client(); client.commands = new Discord.Collection(); @@ -75,4 +75,4 @@ client.on('message', message => { } }); -client.login(token); \ No newline at end of file +client.login(token);