From 73f28400a0caa0dff66d9f35100465ca429de1a3 Mon Sep 17 00:00:00 2001 From: gvbvdxx <123641869+gvbvdxx@users.noreply.github.com> Date: Wed, 22 Oct 2025 18:39:45 +0000 Subject: [PATCH] Fix command help text and blacklist align from command help list --- server-src/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-src/commands.js b/server-src/commands.js index 2832461..1e6060a 100644 --- a/server-src/commands.js +++ b/server-src/commands.js @@ -79,7 +79,7 @@ class CommandHandler { "[color css=orange][bold]To unlock all commands, get ownership (admin) powers![/bold][/color][br]"; } text += "Command list: "; - var excluded = ["commands"]; + var excluded = ["commands", "align"]; for (var c of Object.keys(_this.commands)) { var isNotExcluded = excluded.indexOf(c) < 0; if (isNotExcluded && commandIsAllowed(senderClient, c)) { @@ -407,7 +407,7 @@ class CommandHandler { sendClientCommand(otherClient, "importantMessage", 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.", + " [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.", true );