add kaboom in config for self care and core

This commit is contained in:
ChomeNS
2023-03-24 16:15:26 +07:00
parent ada2f66cdb
commit c7fdad965f
5 changed files with 13 additions and 6 deletions

View File

@@ -22,6 +22,7 @@ public class Bot {
@Getter private final String host;
@Getter private final int port;
private final String _username;
@Getter private final boolean kaboom;
@Getter private final List<Bot> allBots;
@Getter private final Configuration config;
@@ -41,10 +42,11 @@ public class Bot {
@Getter private final MusicPlayerPlugin music;
@Getter private final TPSPlugin tps;
public Bot (String host, int port, String _username, List<Bot> allBots, Configuration config) {
public Bot (String host, int port, String _username, boolean kaboom, List<Bot> allBots, Configuration config) {
this.host = host;
this.port = port;
this._username = _username;
this.kaboom = kaboom;
this.allBots = allBots;
this.config = config;