From 7654d287123860e284878dccac87c8a4eee08310 Mon Sep 17 00:00:00 2001 From: Zymus Date: Wed, 26 Oct 2011 02:47:33 +0000 Subject: [PATCH] Update MediaWiki page '317 Send add ignore' --- 317-Send-add-ignore.mediawiki | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/317-Send-add-ignore.mediawiki b/317-Send-add-ignore.mediawiki index da0c71e..db6916c 100644 --- a/317-Send-add-ignore.mediawiki +++ b/317-Send-add-ignore.mediawiki @@ -9,10 +9,10 @@ Sends the IDs of all the users that this player has in their ignore. This packet has a slightly different structure than the other packets. - int entries = packetSize / 8; - for (int i = 0; i < entries; i++) { - ignoreList[i] = stream.readLong(); - } + int entries = packetSize / 8; + for (int i = 0; i < entries; i++) { + ignoreList[i] = stream.readLong(); + } By looking at the rest of the 317 protocol, there doesn't seem to be a way to change the list dynamically. It seems as though that whenever the player decides to add or remove a player from their list, it must send all the values again.