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) {