From 75593ab621f26c3954bff13057d2ed6720da7592 Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Fri, 22 Jan 2016 11:13:34 +0000 Subject: SPIGOT-1308: Fix typo in PlayerList#sendAll --- nms-patches/PlayerList.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nms-patches/PlayerList.patch') diff --git a/nms-patches/PlayerList.patch b/nms-patches/PlayerList.patch index d0e447db..52d22e6f 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); + } + + } -- cgit v1.2.3