Small bug fix in parseFromUpdate

This commit is contained in:
WiredSpast 2022-02-10 23:53:23 +01:00
parent 09cede554d
commit 27b754339c

View File

@ -105,7 +105,7 @@ public class HFriend {
packet.readString();
}
int friendCount = packet.getReadIndex();
int friendCount = packet.readInteger();
List<Integer> removedIds = new ArrayList<>();
for(int i = 0; i < friendCount; i++) {
if(packet.readInteger() != -1) {