SPIGOT-1308: Fix typo in PlayerList#sendAll
This commit is contained in:
parent
07c300164a
commit
75593ab621
@ -734,7 +734,7 @@
|
|||||||
+
|
+
|
||||||
+ public void sendAll(Packet packet, World world) {
|
+ public void sendAll(Packet packet, World world) {
|
||||||
+ for (int i = 0; i < world.players.size(); ++i) {
|
+ 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);
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ }
|
+ }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user