mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Fixed a bunch of warnings.
By: Lymia <lymiahugs@gmail.com>
This commit is contained in:
parent
26adf52a14
commit
8bec12c50b
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public final class CraftServer implements Server {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Player[] getOnlinePlayers() {
|
public Player[] getOnlinePlayers() {
|
||||||
List<EntityPlayerMP> online = server.b;
|
List<EntityPlayerMP> online = server.b;
|
||||||
Player[] players = new Player[online.size()];
|
Player[] players = new Player[online.size()];
|
||||||
|
|
||||||
for (int i = 0; i < players.length; i++) {
|
for (int i = 0; i < players.length; i++) {
|
||||||
|
|
Loading…
Reference in a new issue