1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/src/commands/admin/shout.js

23 lines
444 B
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Emmits a server-wide message as `info`
2018-03-10 15:47:00 +08:00
*/
exports.run = async (core, server, socket, data) => {
if (socket.uType != 'admin') {
// ignore if not admin
return;
}
server.broadcast( {
cmd: 'info',
text: `Server Notice: ${data.text}`
}, {});
};
exports.requiredData = ['text'];
2018-05-13 18:33:22 +08:00
exports.info = {
name: 'shout',
usage: 'shout {text}',
description: 'Displays passed text to every client connected'
};