Skip to content

Commit f6187f6

Browse files
authored
fix: use dimension data on 1.16.2 (#3397)
* fix: use dimension data on 1.16.2 * retrigger ci
1 parent 71a3a26 commit f6187f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/plugins/blocks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ function inject (bot, { version, storageBuilder, hideErrors }) {
261261
bot.world.setColumn(packet.chunkX, packet.chunkZ, column)
262262
}
263263

264-
if (bot.supportFeature('dimensionDataIsAvailable')) {
264+
if (bot.supportFeature('newLightingDataFormat')) {
265265
column.loadParsedLight(packet.skyLight, packet.blockLight, packet.skyLightMask, packet.blockLightMask, packet.emptySkyLightMask, packet.emptyBlockLightMask)
266266
} else {
267267
column.loadLight(packet.data, packet.skyLightMask, packet.blockLightMask, packet.emptySkyLightMask, packet.emptyBlockLightMask)

lib/plugins/game.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function inject (bot, options) {
6060
bot.game.minY = dimData.minY
6161
bot.game.height = dimData.height
6262
}
63-
} else if (bot.supportFeature('dimensionDataIsAvailable')) { // 1.18
63+
} else if (bot.supportFeature('dimensionDataIsAvailable')) { // 1.16.2+
6464
const dimensionData = nbt.simplify(packet.dimension)
6565
bot.game.minY = dimensionData.min_y
6666
bot.game.height = dimensionData.height

0 commit comments

Comments
 (0)