refactor: remove imposter format checker since it's pretty much useless these days, and it's also disabled in the main instance

This commit is contained in:
ChomeNS
2025-04-12 15:02:29 +07:00
parent b9386f86e1
commit 8bce548c09
5 changed files with 1 additions and 112 deletions

View File

@@ -36,8 +36,6 @@ public class Configuration {
public String consoleChatFormat = "{\"translate\":\"chat.type.text\",\"with\":[\"OWNER_NAME\",\"MESSAGE\"]}";
public ImposterFormatChecker imposterFormatChecker = new ImposterFormatChecker();
public OwnerAuthentication ownerAuthentication = new OwnerAuthentication();
public boolean announceClearChatUsername = false;
@@ -47,11 +45,6 @@ public class Configuration {
public BotOption[] bots = new BotOption[] {};
public static class ImposterFormatChecker {
public boolean enabled = false;
public String key;
}
public static class OwnerAuthentication {
public boolean enabled = false;
public int timeout = 10 * 1000;