Skip to content

Commit 73f2840

Browse files
committed
Fix command help text and blacklist align from command help list
1 parent 5a648ad commit 73f2840

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server-src/commands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class CommandHandler {
7979
"[color css=orange][bold]To unlock all commands, get ownership (admin) powers![/bold][/color][br]";
8080
}
8181
text += "Command list: ";
82-
var excluded = ["commands"];
82+
var excluded = ["commands", "align"];
8383
for (var c of Object.keys(_this.commands)) {
8484
var isNotExcluded = excluded.indexOf(c) < 0;
8585
if (isNotExcluded && commandIsAllowed(senderClient, c)) {
@@ -407,7 +407,7 @@ class CommandHandler {
407407
sendClientCommand(otherClient, "importantMessage", message);
408408
});
409409
},
410-
"<Username> <Message>[br]Makes the screen of the target empty (besides like the background color) except for a small black box like a spoiler on discord and if you click it it slowly fades out and reveals a message, then after a second it returns the screen back to normal like nothing happened.",
410+
"<Username> <Message>[br]Makes the screen of the target empty (besides like the background color) except for a small black box, and if you click it - it slowly fades out and reveals a message, then after a second it returns the screen back to normal like nothing happened.",
411411
true
412412
);
413413

0 commit comments

Comments
 (0)