blob: bc74bfcbba60da4ab4d300a1b1093ac17e8a09d3 (
plain)
1
2
3
4
5
6
7
|
let allowedUUIDS = [
"dc8c39647b294e03ae9ed13ebd65dd29"
]
module.exports = {hidden: function(featureManager){
return !allowedUUIDS.includes(Player.getUUID().toString().replace(/-/g, ""))
}}
|