diff --git a/src/main/java/wtf/beatrice/hidekobot/listeners/SlashCommandListener.java b/src/main/java/wtf/beatrice/hidekobot/listeners/SlashCommandListener.java index e84f26f..fd86e1f 100644 --- a/src/main/java/wtf/beatrice/hidekobot/listeners/SlashCommandListener.java +++ b/src/main/java/wtf/beatrice/hidekobot/listeners/SlashCommandListener.java @@ -34,7 +34,7 @@ public class SlashCommandListener extends ListenerAdapter if(command == null) return; - // finally run the command, in a new thread to avoid locking. + // finally run the command, in a new thread to avoid locking the main one. new Thread(() -> command.runSlashCommand(event)).start(); } }