Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
minecrafter committed Jun 25, 2016
1 parent 821a41c commit c753bfa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void run() {
original = plugin.getPlayers();
} else {
try {
original = plugin.getPlayersOnServer(type);
original = RedisBungee.getApi().getPlayersOnServer(type);
} catch (IllegalArgumentException ignored) {
}
}
Expand All @@ -187,7 +187,7 @@ public void run() {
} else {
out.writeUTF(type);
try {
out.writeInt(plugin.getPlayersOnServer(type).size());
out.writeInt(RedisBungee.getApi().getPlayersOnServer(type).size());
} catch (IllegalArgumentException e) {
out.writeInt(0);
}
Expand Down

0 comments on commit c753bfa

Please sign in to comment.