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

@@ -234,7 +234,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin<Player> {
@Override
public void initialize() {
updateProxyIds();
updateProxiesIds();
// start heartbeat task
heartbeatTask = getProxy().getScheduler().buildTask(this, new HeartbeatTask(this, this.globalPlayerCount)).repeat(HeartbeatTask.INTERVAL, HeartbeatTask.REPEAT_INTERVAL_TIME_UNIT).schedule();
@@ -323,7 +323,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin<Player> {
}
@Override
public void updateProxyIds() {
public void updateProxiesIds() {
this.proxiesIds = this.getCurrentProxiesIds(false);
}