From 3bd09d286701a8dadfe9da62ba8999f3c9386aca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= 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(); } }