From 58faffed6d82ce9d24e203f3835c1a1450bda1c7 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Sat, 22 May 2021 13:22:44 +0200 Subject: [PATCH] Remove chat.interactive option Whether the chat is interactive or not can be declared in the strings.json by using MMs type. --- .../java/com/plotsquared/core/configuration/Settings.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index fae9e178e..bc0c93a58 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -190,7 +190,6 @@ public class Settings extends Config { // Miscellaneous DEBUG = config.getBoolean("debug", DEBUG); - Chat.INTERACTIVE = config.getBoolean("chat.fancy", Chat.INTERACTIVE); Enabled_Components.DATABASE_PURGER = config.getBoolean("auto-purge", Enabled_Components.DATABASE_PURGER); @@ -506,9 +505,6 @@ public class Settings extends Config { @Comment("Chat related settings") public static final class Chat { - @Comment("Should the chat be interactive?") - public static boolean INTERACTIVE = true; - @Comment("Should the plot chat be logged to console?") public static boolean LOG_PLOTCHAT_TO_CONSOLE = true;