11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
|
const config = require("../config.json");
|
||
|
|
||
|
function inject (client) {
|
||
|
function tellraw (selectors, message) {
|
||
|
client.cmdCore.run(`minecraft:tellraw ${selectors} ${JSON.stringify(message)}`);
|
||
|
}
|
||
|
client.tellraw = tellraw;
|
||
|
return tellraw;
|
||
|
}
|
||
|
|
||
|
module.exports = { inject };
|