Files
2026-08-24 22:20:36 +02:00

18 lines
485 B
JavaScript

/*
@Packet name RespawnConfirmation
@Packet identifier 144
@Description Sends the confirmation of the respawn
@Data pId
@Structure -
*/
module.exports = function (data) {
const packetLength = 1 + 1;
const buffer = new ArrayBuffer(packetLength);
const view = new DataView(buffer);
view.setUint8(0, 144);
view.setUint8(1, packetLength);
return buffer;
};