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

@@ -110,7 +110,6 @@ public class Bot extends SessionAdapter {
public final ChomeNSModIntegrationPlugin chomeNSMod;
public final AuthPlugin auth;
public final ScreensharePlugin screenshare = null;
public final FormatCheckerPlugin formatChecker;
public final ClearChatNameAnnouncerPlugin clearChatNameAnnouncer;
public final WhitelistPlugin whitelist;
public final PlayersDatabasePlugin playersDatabase;
@@ -167,7 +166,6 @@ public class Bot extends SessionAdapter {
this.chomeNSMod = new ChomeNSModIntegrationPlugin(this);
this.auth = new AuthPlugin(this);
// this.screenshare = new ScreensharePlugin(this);
this.formatChecker = new FormatCheckerPlugin(this);
this.clearChatNameAnnouncer = new ClearChatNameAnnouncerPlugin(this);
this.whitelist = new WhitelistPlugin(this);
this.playersDatabase = new PlayersDatabasePlugin(this);