mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-20 15:01:17 +00:00
11 lines
No EOL
220 B
JavaScript
11 lines
No EOL
220 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv, player)
|
|
{
|
|
player._client.on("arm_animation", function(packet) {
|
|
player._writeOthers("animation", {
|
|
entityId: player.entity.id,
|
|
animation: 0
|
|
});
|
|
});
|
|
} |