From bf05fc81dd1b41c335af81c266a76bf744f4f58a Mon Sep 17 00:00:00 2001 From: Sam Goodger Date: Tue, 6 Apr 2021 14:19:38 +1000 Subject: [PATCH] Make prefixchat config option default to 'false' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This may seem like a really negligible change but having this option default to `true` actually causes a lot of pain for support in other plugins that deal with prefixes (LuckPerms and Essentials being the main victims). Users always come in guns blazing, screaming at us because they don't know how to remove the world name from their chat. It's such a simple solution, yet no one thinks that of all plugins, it would be Multiverse that is tainting their beloved chat format. Please consider updating this default setting. It will save a lot of us trouble in the future 🙏 --- .../MultiverseCore/MultiverseCoreConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCoreConfiguration.java b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCoreConfiguration.java index f07c12e0..a5fa9479 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCoreConfiguration.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCoreConfiguration.java @@ -96,7 +96,7 @@ public class MultiverseCoreConfiguration extends SerializationConfig implements // BEGIN CHECKSTYLE-SUPPRESSION: MagicNumberCheck enforceaccess = false; useasyncchat = true; - prefixchat = true; + prefixchat = false; prefixchatformat = "[%world%]%chat%"; teleportintercept = true; firstspawnoverride = true;