Remove chat.interactive option

Whether the chat is interactive or not can be declared in the strings.json by using MMs <click:_action_:_value_> type.
This commit is contained in:
NotMyFault 2021-05-22 13:22:44 +02:00
parent 87706d471b
commit 58faffed6d
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -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;