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

20 lines
353 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-12 16:43:12 +08:00
exports.info = { name: 'shout' };