little config update + among us

This commit is contained in:
ChomeNS
2023-03-21 12:21:12 +07:00
parent 7246f0a36f
commit f769cd92b0
4 changed files with 20 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ public class Main {
final File file = new File("config.yml");
final Constructor constructor = new Constructor(Configuration.class);
final Yaml yaml = new Yaml(constructor);
Configuration config;
Configuration _config;
if (!file.exists()) {
// creates config file from default-config.yml
@@ -35,16 +35,16 @@ public class Main {
System.out.println("config.yml file not found, so the default one was created");
config = yaml.load(is);
_config = yaml.load(is);
}
InputStream opt = new FileInputStream(file);
BufferedReader reader = new BufferedReader(new InputStreamReader(opt));
config = yaml.load(reader);
_config = yaml.load(reader);
final Configuration config = _config;
final int reconnectDelay = config.reconnectDelay();
final Map<String, String> keys = config.keys();
Configuration.Bots[] botsOptions = config.bots();
final List<Bot> allBots = new ArrayList<>();
@@ -57,7 +57,7 @@ public class Main {
final String username = botOption.username();
new Thread(() -> {
final Bot bot = new Bot(host, port, reconnectDelay, username, allBots, keys);
final Bot bot = new Bot(host, port, username, allBots, config);
allBots.add(bot);
latch.countDown();