mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 15:44:49 +01:00
SPIGOT-1308: Fix typo in PlayerList#sendAll
This commit is contained in:
parent
07c300164a
commit
75593ab621
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
+ }
|
||||
+
|
||||
+ }
|
||||
|
|
Loading…
Reference in a new issue