bc-minecraft-bedrock-command
Version:
A typescript package library that handles commands for minecraft bedrock
18 lines • 692 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.tell = void 0;
const parameter_type_1 = require("../../types/parameter-type");
/**The tell command */
exports.tell = [
{
name: 'tell',
documentation: 'Sends a private message to one or more players.',
permission_level: 0,
parameters: [
{ text: 'tell', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'target', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'message', type: parameter_type_1.ParameterType.message, required: true },
],
},
];
//# sourceMappingURL=tell.js.map