mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-17 05:21:22 +00:00
15 lines
No EOL
354 B
JavaScript
15 lines
No EOL
354 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv,player)
|
|
{
|
|
player._client.on('chat', function (data) {
|
|
serv.broadcast('<' + player.username + '>' + ' ' + data.message);
|
|
player.emit("chat",data.message);
|
|
});
|
|
|
|
function chat(message) {
|
|
player._client.write('chat', { message: JSON.stringify(message), position: 0 });
|
|
}
|
|
|
|
player.chat=chat;
|
|
} |