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

change method naming of updateProxiesIds

This commit is contained in:
2022-07-26 12:42:42 +04:00
parent e7b241edd6
commit 92f5e04edf
4 changed files with 7 additions and 8 deletions

View File

@@ -210,7 +210,7 @@ public class RedisBungeeBungeePlugin extends Plugin implements RedisBungeePlugin
InitialUtils.checkRedisVersion(this);
// check if this proxy is recovering from a crash and start heart the beat.
InitialUtils.checkIfRecovering(this, getDataFolder().toPath());
updateProxyIds();
updateProxiesIds();
uuidTranslator = new UUIDTranslator(this);
heartbeatTask = service.scheduleAtFixedRate(new HeartbeatTask(this, this.globalPlayerCount), 0, HeartbeatTask.INTERVAL, HeartbeatTask.REPEAT_INTERVAL_TIME_UNIT);
dataManager = new BungeeDataManager(this);
@@ -294,7 +294,7 @@ public class RedisBungeeBungeePlugin extends Plugin implements RedisBungeePlugin
@Override
public void updateProxyIds() {
public void updateProxiesIds() {
proxiesIds = getCurrentProxiesIds(false);
}