Skip to content

Commit f92db61

Browse files
authored
Add links field to server resource_packs_info
1 parent 8f3b6c5 commit f92db61

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/server/server.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ async function startServer (version = '1.17.10', ok) {
5353
must_accept: false,
5454
has_scripts: false,
5555
behaviour_packs: [],
56-
texture_packs: []
56+
texture_packs: [],
57+
resource_pack_links: []
5758
})
5859

5960
// ResourcePackStack is sent by the server to send the order in which resource packs and behaviour packs

test/internal.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ async function startTest (version = CURRENT_VERSION, ok) {
4747
must_accept: false,
4848
has_scripts: false,
4949
behaviour_packs: [],
50-
texture_packs: []
50+
texture_packs: [],
51+
resource_pack_links: []
5152
})
5253

5354
client.once('resource_pack_client_response', async rp => {

0 commit comments

Comments
 (0)