@boem312/minecraft-server
Version:
A pure JS library to create Minecraft Java 1.16.3 servers
24 lines • 563 B
JavaScript
module.exports = {
visibleSkinParts: {
info: {
preventSet: true
},
get() {
return this.p._visibleSkinParts;
},
set(value) {
this.p._visibleSkinParts = value;
},
init() {
this.p._visibleSkinParts = Object.freeze({
cape: null,
torso: null,
leftArm: null,
rightArm: null,
leftLeg: null,
rightLeg: null,
hat: null
});
}
}
}