SPIGOT-1308: Fix typo in PlayerList#sendAll

This commit is contained in:
Thinkofdeath 2016-01-22 11:13:34 +00:00
parent 07c300164a
commit 75593ab621

View file

@ -734,7 +734,7 @@
+
+ public void sendAll(Packet packet, World world) {
+ for (int i = 0; i < world.players.size(); ++i) {
+ ((EntityPlayer) this.players.get(i)).playerConnection.sendPacket(packet);
+ ((EntityPlayer) world.players.get(i)).playerConnection.sendPacket(packet);
+ }
+
+ }