Update a small comment

This commit is contained in:
Bea 2022-12-28 05:32:17 +01:00
parent c077b92f93
commit 3bd09d2867
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}