From 409b273edc21adf743cb22d26c76b5b7b5dd79b1 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Wed, 24 Apr 2024 19:10:50 -0400 Subject: [PATCH] Don't use this --- DiscordBot/pom.xml | 30 ------------------- .../restfulmc/bot/command/CommandManager.java | 3 ++ 2 files changed, 3 insertions(+), 30 deletions(-) diff --git a/DiscordBot/pom.xml b/DiscordBot/pom.xml index f8ae5b0..bb3d288 100644 --- a/DiscordBot/pom.xml +++ b/DiscordBot/pom.xml @@ -52,36 +52,6 @@ - - - - pl.project13.maven - git-commit-id-plugin - 4.9.10 - - - - revision - - - - - git - $PROJECT.BASEDIR$/.git - true - true - src/main/resources/git.properties - full - $USER.TIMEZONE$ - MM-dd-yyyy@HH:mm:ss - - ^git.branch$ - ^git.build.(time|version)$ - ^git.commit.id.(abbrev|full)$ - ^git.build.user.name$ - - - diff --git a/DiscordBot/src/main/java/cc/restfulmc/bot/command/CommandManager.java b/DiscordBot/src/main/java/cc/restfulmc/bot/command/CommandManager.java index f40be81..76a4c07 100644 --- a/DiscordBot/src/main/java/cc/restfulmc/bot/command/CommandManager.java +++ b/DiscordBot/src/main/java/cc/restfulmc/bot/command/CommandManager.java @@ -18,6 +18,9 @@ import java.util.List; * @author Braydon */ public final class CommandManager extends ListenerAdapter { + /** + * The registered slash commands. + */ private final List commands = Collections.synchronizedList(new ArrayList<>()); public CommandManager(@NonNull DiscordBot bot, @NonNull RESTfulMCClient apiClient) {