Update a small comment

This commit is contained in:
Bea 2022-12-28 05:32:17 +01:00 committed by Beatrice Dellacà
parent 5440df2bb6
commit de356a0163

View File

@ -34,7 +34,7 @@ public class SlashCommandListener extends ListenerAdapter
if(command == null) return; 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(); new Thread(() -> command.runSlashCommand(event)).start();
} }
} }