feat,refactor: team joiner plugin and some refactoring

This commit is contained in:
ChomeNS
2024-12-04 19:49:24 +07:00
parent 20cd93a826
commit bd4ceda4f1
9 changed files with 115 additions and 18 deletions

View File

@@ -81,6 +81,7 @@ public class Bot {
public MailPlugin mail;
public PacketSnifferPlugin packetSniffer;
public VoiceChatPlugin voiceChat;
public TeamJoinerPlugin teamJoiner;
public TagPlugin tag;
public WorldPlugin world;
public AuthPlugin auth;
@@ -129,6 +130,7 @@ public class Bot {
this.mail = new MailPlugin(this);
this.packetSniffer = new PacketSnifferPlugin(this);
this.voiceChat = new VoiceChatPlugin(this);
this.teamJoiner = new TeamJoinerPlugin(this);
this.tag = new TagPlugin(this);
this.world = new WorldPlugin(this);
this.auth = new AuthPlugin(this);