diff options
Diffstat (limited to 'commandManager.js')
-rw-r--r-- | commandManager.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/commandManager.js b/commandManager.js index f1b6dee..35ccb7a 100644 --- a/commandManager.js +++ b/commandManager.js @@ -10,7 +10,6 @@ import { leaderboard } from "./commands/leaderboard" import { update } from "./commands/update" import { fetchDiscord } from "./commands/fetchDiscord" import { findColeweight } from "./commands/findColeweight" -import { claim } from "./commands/claim" import { time } from "./commands/time" import { info } from "./commands/info" import { credits } from "./commands/credits" @@ -24,7 +23,8 @@ import { throne } from "./commands/coords/throne" import { divans } from "./commands/coords/divans" import { yog } from "./commands/coords/yog" import { automatons } from "./commands/coords/automatons" -import { drawLine } from "./commands/drawline.js" +import { temple } from "./commands/coords/temple.js" +import { drawLine } from "./commands/drawLine.js" register("command", (...args) => { @@ -97,9 +97,6 @@ register("command", (...args) => { case "settings": Settings.openGUI() break - case "claim": - claim(args[1]) - break case "powdertrackersync": updateDisplay() break @@ -123,6 +120,9 @@ register("command", (...args) => { case "automatons": automatons(args[1]) break + case "temple": + temple(args[1]) + break case "coord": case "coords": openCoordsGui() @@ -148,7 +148,7 @@ register("command", (...args) => { reloadOptions = ["coleweight", "collection"], calculateOptions = ["tick", "ms2toprofessional", "hotm", "calchotm"], commands = ["setkey", "help", "move", "toggle", "throne", "spiral", "reload", "leaderboard", - "settings", "claim", "time", "info", "clearlobbies", "yog", "divan", "automatons", "coords", "credits", "track", "calculate", "drawline"] + "settings", "time", "info", "clearlobbies", "yog", "divan", "automatons", "temple", "coords", "credits", "track", "calculate", "drawline"] if(args[0].length == 0 || args[0] == undefined) return output = commands |