mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
26 lines
407 B
JavaScript
26 lines
407 B
JavaScript
|
/*
|
||
|
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
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'];
|
||
|
|
||
|
exports.info = {
|
||
|
name: 'shout',
|
||
|
usage: 'shout {text}',
|
||
|
description: 'Displays passed text to every client connected'
|
||
|
};
|