diff --git a/nms-patches/PlayerList.patch b/nms-patches/PlayerList.patch index d0e447dbc..52d22e6f9 100644 --- a/nms-patches/PlayerList.patch +++ b/nms-patches/PlayerList.patch @@ -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); + } + + }