From 05d1af8e445b0d5fb74256489d87cd86cbaf18f3 Mon Sep 17 00:00:00 2001 From: Sly_Otter <168274040+SlyOtters@users.noreply.github.com> Date: Wed, 5 Mar 2025 17:18:27 +0100 Subject: [PATCH 1/2] Update optimisation to keep using eGlow instead of removing it --- src/content/docs/guides/Minecraft/Optimisation/advanced.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx index 4df1a65f4a..7f73038971 100644 --- a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx +++ b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx @@ -13,7 +13,7 @@ The plugin author's optimisation guide is linked below.. The `anti-override` opt Regarding anti-override, first make sure that none of your plugins mess with the tablist or scoreboard other than TAB itself. Some common culprits might be BetterTeams, eGlow, Paper's collision rules and CMI. -You will have to remove eGlow in order to take full advantage of this optimisation. Once you're done modifying/removing such plugins, make sure `enable-player-collisions` in Paper's configuration is true. After you do that, you can disable player collisions in TAB's config by changing `scoreboard-teams.enable-collisions`. +You will need to modify eGlow in order to take full advantage of this optimization. Note that disabling these settings in eGlow will most likely result in incorrect glow colors. Just like TAB, eGlow has an anti-override feature called `smart-packet-blocker` and a setting called `send-eGlow-team-packets` for team packets. Switch this from true to false to disable them. Once you're done modifying/removing such plugins, make sure `enable-player-collisions` in Paper's configuration is true. After you do that, you can disable player collisions in TAB's config by changing `scoreboard-teams.enable-collisions`. Finally, switch `anti-override` from true to false. If your tablist does not have proper order, an external plugin is probably still modifying the tablist.
From 1e030a51920b07df046e53d90681bca24ba06633 Mon Sep 17 00:00:00 2001 From: Sly_Otter <168274040+SlyOtters@users.noreply.github.com> Date: Wed, 5 Mar 2025 17:27:24 +0100 Subject: [PATCH 2/2] Add solution for possible incorrect glow colors --- src/content/docs/guides/Minecraft/Optimisation/advanced.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx index 7f73038971..63a6802804 100644 --- a/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx +++ b/src/content/docs/guides/Minecraft/Optimisation/advanced.mdx @@ -13,7 +13,7 @@ The plugin author's optimisation guide is linked below.. The `anti-override` opt Regarding anti-override, first make sure that none of your plugins mess with the tablist or scoreboard other than TAB itself. Some common culprits might be BetterTeams, eGlow, Paper's collision rules and CMI. -You will need to modify eGlow in order to take full advantage of this optimization. Note that disabling these settings in eGlow will most likely result in incorrect glow colors. Just like TAB, eGlow has an anti-override feature called `smart-packet-blocker` and a setting called `send-eGlow-team-packets` for team packets. Switch this from true to false to disable them. Once you're done modifying/removing such plugins, make sure `enable-player-collisions` in Paper's configuration is true. After you do that, you can disable player collisions in TAB's config by changing `scoreboard-teams.enable-collisions`. +You will need to modify eGlow in order to take full advantage of this optimization. Note that disabling these settings in eGlow will most likely result in incorrect glow colors unless you add the placeholder %eglow_glowcolor% at the end of the tagprefix in TAB. Just like TAB, eGlow has an anti-override feature called `smart-packet-blocker` and a setting called `send-eGlow-team-packets` for team packets. Switch this from true to false to disable them. Once you're done modifying/removing such plugins, make sure `enable-player-collisions` in Paper's configuration is true. After you do that, you can disable player collisions in TAB's config by changing `scoreboard-teams.enable-collisions`. Finally, switch `anti-override` from true to false. If your tablist does not have proper order, an external plugin is probably still modifying the tablist.