chomens-bot-js/plugins/tellraw.js

10 lines
288 B
JavaScript
Raw Normal View History

2022-11-15 21:33:16 -05:00
/* eslint-disable require-jsdoc */
/* eslint-disable max-len */
2022-11-27 02:35:28 -05:00
function inject (bot) {
bot.tellraw = function (selector, message) {
bot.core.run(`minecraft:tellraw ${selector} ${typeof message === 'string' ? message : JSON.stringify(message)}`)
}
};
2022-11-27 02:35:28 -05:00
module.exports = { inject }