From 1812faa117ba97b5290bab4c5d442281a8fc5981 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sun, 16 May 2021 09:30:31 -0500 Subject: [PATCH] Remove ISS from regular commands --- bot/awesomescibo.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index 32364a2..66c9697 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -80,6 +80,10 @@ client.once("ready", () => { } ], "description": "Commands regarding the creation/development of the bot" + }, + { + "name": "iss", + "description": "Shows the location of the ISS on a map as well as all of the current astronauts within it" } ]); @@ -505,9 +509,6 @@ client.on("message", async (message) => { case "dobeservers": // Shows number of servers bot is in showServerNumber(message); break; - case "dobeiss": // Show location of ISS - showIssLocation(message); - break; } } });