mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-07 04:00:46 +00:00
add blockEntities to map_chunk for 1.12
This commit is contained in:
parent
9ba0b6ca27
commit
3b51a29ae1
2 changed files with 5 additions and 3 deletions
|
|
@ -25,5 +25,5 @@
|
||||||
},
|
},
|
||||||
"everybody-op":true,
|
"everybody-op":true,
|
||||||
"max-entities":100,
|
"max-entities":100,
|
||||||
"version": "1.8.9"
|
"version": "1.12.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,8 @@ module.exports.player = function (player, serv, settings) {
|
||||||
z: chunkZ,
|
z: chunkZ,
|
||||||
groundUp: true,
|
groundUp: true,
|
||||||
bitMap: 0x0000,
|
bitMap: 0x0000,
|
||||||
chunkData: Buffer.alloc(0)
|
chunkData: Buffer.alloc(0),
|
||||||
|
blockEntities: []
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -102,7 +103,8 @@ module.exports.player = function (player, serv, settings) {
|
||||||
z: z,
|
z: z,
|
||||||
groundUp: true,
|
groundUp: true,
|
||||||
bitMap: 0xffff,
|
bitMap: 0xffff,
|
||||||
chunkData: chunk.dump()
|
chunkData: chunk.dump(),
|
||||||
|
blockEntities: []
|
||||||
})
|
})
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue