@boem312/minecraft-server
Version:
A pure JS library to create Minecraft Java 1.16.3 servers
19 lines (15 loc) • 624 B
JavaScript
const CustomError = require('../../../CustomError.js');
module.exports = function () {
if (!this.p.stateHandler.checkReady.call(this))
return;
if (this.p.windowId === null || this.p.windowId === undefined)
this.p.emitError(new CustomError('expectationNotMet', 'libraryUser', 'window opened window ', {
got: 'no open window',
expectationType: 'value',
expectation: 'open window'
}, this.constructor, { server: this.server, client: this }));
this.p.sendPacket('close_window', {
windowId: this.p.windowId
})
this.p.windowId = null;
}