2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

rename internal method

This commit is contained in:
2022-07-08 03:23:44 +04:00
parent 9f05bd3438
commit 2c11cb179a
3 changed files with 6 additions and 5 deletions

View File

@@ -83,6 +83,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin<Player> {
this.server = server;
this.logger = logger;
this.dataFolder = dataDirectory.toFile();
}
@@ -347,7 +348,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin<Player> {
@Override
public void start() {
public void initialize() {
try {
loadConfig();
} catch (IOException e) {
@@ -625,7 +626,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin<Player> {
@Subscribe
public void proxyInit(ProxyInitializeEvent event) {
start();
initialize();
}
@Subscribe