From b13e74365dc2a5564f5d086a3a2b6aacf8add05a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Wojtas?= Date: Sun, 3 May 2026 18:12:01 +0200 Subject: [PATCH 1/3] Update faq about disabling commands --- content/docs/eternalcore/faq.mdx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/content/docs/eternalcore/faq.mdx b/content/docs/eternalcore/faq.mdx index a57ddf04..e963e0a7 100644 --- a/content/docs/eternalcore/faq.mdx +++ b/content/docs/eternalcore/faq.mdx @@ -10,6 +10,11 @@ import { AlertBox } from "../../components/ui/alert-box"; ## Disabling commands If a command from EternalCore conflicts with a command from another plugin, you can disable it in `commands.yml`. +Example usage to disable `rtp` command in EternalCore. + +1. Open file: `/plugins/EternalCore/commands.yml` + +2. Add in commands structure: ```yaml rtp: @@ -17,8 +22,14 @@ rtp: enabled: false aliases: [] permissions: [] - subCommands: [] + subCommands: {} ``` + +Remember to use full original command name NOT THE ALIAS. + + + +3. Restart the server for the changes to work. ## Formatting text in chat From ce42ccd0da5889aa780ea23fe19f3e779f2e5e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Wojtas?= Date: Sun, 3 May 2026 18:18:15 +0200 Subject: [PATCH 2/3] Follow gemini partly --- content/docs/eternalcore/faq.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/docs/eternalcore/faq.mdx b/content/docs/eternalcore/faq.mdx index e963e0a7..fcb6d610 100644 --- a/content/docs/eternalcore/faq.mdx +++ b/content/docs/eternalcore/faq.mdx @@ -25,11 +25,10 @@ rtp: subCommands: {} ``` -Remember to use full original command name NOT THE ALIAS. + Remember to use the full original command name, **not** an alias. - -3. Restart the server for the changes to work. +3. Restart the server for the changes to take effect. ## Formatting text in chat From eff68860425e959c17d566eb2eff1045535de093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Wojtas?= <80779749+CitralFlo@users.noreply.github.com> Date: Mon, 4 May 2026 14:24:44 +0200 Subject: [PATCH 3/3] Update content/docs/eternalcore/faq.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jakub Kędziora <77227023+Jakubk15@users.noreply.github.com> --- content/docs/eternalcore/faq.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/eternalcore/faq.mdx b/content/docs/eternalcore/faq.mdx index fcb6d610..67d780e9 100644 --- a/content/docs/eternalcore/faq.mdx +++ b/content/docs/eternalcore/faq.mdx @@ -10,7 +10,7 @@ import { AlertBox } from "../../components/ui/alert-box"; ## Disabling commands If a command from EternalCore conflicts with a command from another plugin, you can disable it in `commands.yml`. -Example usage to disable `rtp` command in EternalCore. +Example usage to disable `/rtp` command in EternalCore. 1. Open file: `/plugins/EternalCore/commands.yml`