Enough commits for today!

This commit is contained in:
Tux 2013-11-15 22:09:04 -05:00
parent f2f84fcc13
commit d82f375506
1 changed files with 26 additions and 43 deletions

View File

@ -245,10 +245,6 @@ public class RedisBungee extends Plugin implements Listener {
@EventHandler
public void onPlayerConnect(final PostLoginEvent event) {
getProxy().getScheduler().runAsync(this, new Runnable() {
@Override
public void run() {
if (pool != null) {
Jedis rsc = pool.getResource();
try {
rsc.sadd("server:" + configuration.getServerId() + ":usersOnline", event.getPlayer().getName());
@ -260,15 +256,9 @@ public class RedisBungee extends Plugin implements Listener {
// Well, upon further inspection of BungeeCord's source code, this turned
// out to not be needed at all, since ServerConnectedEvent is called anyway.
}
}
});
}
@EventHandler
public void onPlayerDisconnect(final PlayerDisconnectEvent event) {
getProxy().getScheduler().runAsync(this, new Runnable() {
@Override
public void run() {
if (pool != null) {
Jedis rsc = pool.getResource();
try {
@ -280,14 +270,9 @@ public class RedisBungee extends Plugin implements Listener {
}
}
}
});
}
@EventHandler
public void onServerChange(final ServerConnectedEvent event) {
getProxy().getScheduler().runAsync(this, new Runnable() {
@Override
public void run() {
if (pool != null) {
Jedis rsc = pool.getResource();
try {
@ -297,8 +282,6 @@ public class RedisBungee extends Plugin implements Listener {
}
}
}
});
}
@EventHandler
public void onPing(ProxyPingEvent event) {