Added arm swinging animation

This commit is contained in:
mhsjlw 2015-08-28 11:41:13 -04:00
parent b00110d19a
commit 4f3b073e40

View file

@ -0,0 +1,11 @@
module.exports=inject;
function inject(serv, player)
{
player._client.on("arm_animation", function(packet) {
player._writeOthers("animation", {
entityId: player.entity.id,
animation: 0
});
});
}