This repository has been archived on 2023-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
kaboomproxy/clientpackets/position.js
2021-06-17 02:08:50 -03:00

7 lines
No EOL
239 B
JavaScript

module.exports = function(vanillaclient, client, server, data) {
client.position.x = data.x;
client.position.y = data.y;
client.position.z = data.z;
client.position.yaw = data.yaw;
client.position.pitch = data.pitch;
};