Update MediaWiki page '317 Send add ignore'

This commit is contained in:
Zymus 2011-10-26 02:47:33 +00:00 committed by moparisthebest
parent 39acbb41ab
commit 7654d28712
1 changed files with 4 additions and 4 deletions

View File

@ -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.