Apply page network limit when converting book pages in 1.17->1.17.1 (#4256)

This commit is contained in:
EnZaXD 2024-11-10 21:44:10 +01:00 committed by GitHub
parent 8e4da81022
commit ddbe8ef0fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,9 @@ public final class Protocol1_17To1_17_1 extends AbstractProtocol<ClientboundPack
ListTag<StringTag> pagesTag = new ListTag<>(StringTag.class);
for (int i = 0; i < pages; i++) {
String page = wrapper.read(PAGE_STRING_TYPE);
pagesTag.add(new StringTag(page));
if (i < 200) { // Apply network limit as per game code
pagesTag.add(new StringTag(page));
}
}
// Legacy servers don't like an empty pages list