mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-14 03:51:07 +00:00
15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv, player)
|
|
{
|
|
function playerlistUpdateText(header, footer) {
|
|
player._client.write('playerlist_header', {
|
|
header: JSON.stringify(header),
|
|
footer: JSON.stringify(footer)
|
|
});
|
|
}
|
|
|
|
playerlistUpdateText("Flying squid", "Test server")
|
|
|
|
player.playerlistUpdateText=playerlistUpdateText;
|
|
}
|