UNPKG

@boem312/minecraft-server

Version:

A pure JS library to create Minecraft Java 1.16.3 servers

19 lines 398 B
module.exports = { chatSettings: { info: { preventSet: true }, get() { return this.p._chatSettings; }, set(value) { this.p._chatSettings = value; }, init() { this.p._chatSettings = Object.freeze({ visible: null, colors: null }); } } }