Added comment in MacroManager

This commit is contained in:
Bella 2020-05-05 10:29:40 -04:00
parent d8d614c621
commit fa15a2e535
No known key found for this signature in database
GPG Key ID: DBD4A6030080C8B3
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ public class MacroManager {
if (macrosForThisKey == null) return;
for (String currentMacro : macrosForThisKey) {
if (currentMacro.startsWith(getCommandPrefix())) {
sendKamiCommand(currentMacro, false);
if (currentMacro.startsWith(getCommandPrefix())) { // this is done instead of just sending a chat packet so it doesn't add to the chat history
sendKamiCommand(currentMacro, false); // ie, the false here
} else {
sendServerMessage(currentMacro);
}