chomens-bot-js/plugins/tellraw.js

9 lines
253 B
JavaScript
Raw Normal View History

/* eslint-disable max-len */
function inject(bot) {
bot.tellraw = function(selector, message) {
bot.core.run(`minecraft:tellraw ${selector} ${typeof message === 'string' ? message : JSON.stringify(message)}`);
};
};
module.exports = {inject};