mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-16 21:11:22 +00:00
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
module.exports.player=function(serv, player)
|
|
{
|
|
player.playerlistUpdateText = (header, footer) =>
|
|
player._client.write('playerlist_header', {
|
|
header: JSON.stringify(header),
|
|
footer: JSON.stringify(footer)
|
|
});
|
|
|
|
player.playerlistUpdateText("Flying squid", "Test server");
|
|
};
|