diff --git a/plugins/tellraw.js b/plugins/tellraw.js index ef94057..589ad1c 100644 --- a/plugins/tellraw.js +++ b/plugins/tellraw.js @@ -1,7 +1,7 @@ /* 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)}`); + bot.core.run(`minecraft:tellraw ${selector} ${typeof message === 'string' ? message : JSON.stringify(message)}`); }; };