mirror of
https://github.com/danbulant/flying-squid
synced 2026-05-23 06:08:46 +00:00
16 lines
No EOL
271 B
JavaScript
16 lines
No EOL
271 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv)
|
|
{
|
|
function broadcast(message, color) {
|
|
serv.players.forEach(function(player){
|
|
var msg = {
|
|
"text": message,
|
|
"color": color
|
|
};
|
|
player.chat(msg);
|
|
});
|
|
}
|
|
|
|
serv.broadcast=broadcast;
|
|
} |