1const assert = require('assert') 2 3module.exports = () => async (bot) => { 4 await bot.waitForChunksToLoad() 5 // TODO: ** Fix in 1.17 6 if (bot.oxygenLevel) assert.strictEqual(bot.oxygenLevel, 20, 'Wrong oxygen level') 7} 8 9