From de356a0163fa155f0e6abbc5c8ab74e24b2897c1 Mon Sep 17 00:00:00 2001 From: Bea Date: Wed, 28 Dec 2022 05:32:17 +0100 Subject: [PATCH] Update a small comment --- .../wtf/beatrice/hidekobot/listeners/SlashCommandListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }