11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
module.exports = {
|
|
name: 'chat',
|
|
description: 'Sends a message to the chat.',
|
|
type: 'mineflayer',
|
|
|
|
async execute(bot, message) {
|
|
|
|
console.log(message.toString());
|
|
|
|
}
|
|
}; |