mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-14 20:11:03 +00:00
11 lines
No EOL
217 B
JavaScript
11 lines
No EOL
217 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv, player)
|
|
{
|
|
player._client.on('client_command', function (packet) {
|
|
if(packet.payload==1){
|
|
//WIP: dummy
|
|
player.system ("WIP, press ESC");
|
|
}
|
|
});
|
|
} |