CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/test/externalTests/dimensionName.js
Views: 789
1
const assert = require('assert')
2
3
module.exports = () => async (bot) => {
4
assert.strictEqual(bot._getDimensionName(), 'minecraft:overworld')
5
}
6
7