Update a small comment
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bea 2022-12-28 05:32:17 +01:00
parent 33d9af24fd
commit 0157688321

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