feat,refactor: query plugin which also means refactor

This commit is contained in:
ChomeNS
2024-12-07 17:59:18 +07:00
parent 9b320d64b5
commit b3beac6c3b
7 changed files with 193 additions and 209 deletions

View File

@@ -63,6 +63,7 @@ public class Bot {
public PositionPlugin position;
public ServerPluginsManagerPlugin serverPluginsManager;
public SelfCarePlugin selfCare;
public QueryPlugin query;
public CorePlugin core;
public TeamPlugin team;
public PlayersPlugin players;
@@ -113,6 +114,7 @@ public class Bot {
this.position = new PositionPlugin(this);
this.serverPluginsManager = new ServerPluginsManagerPlugin(this);
this.selfCare = new SelfCarePlugin(this);
this.query = new QueryPlugin(this);
this.core = new CorePlugin(this);
this.team = new TeamPlugin(this);
this.players = new PlayersPlugin(this);