18 lines
489 B
JavaScript
18 lines
489 B
JavaScript
/*
|
|
@Packet name LogoutCancelled
|
|
@Packet identifier 136
|
|
@Description Sends the player's id to the nearby players
|
|
@Data pId, playerId
|
|
@Structure -
|
|
*/
|
|
|
|
module.exports = function (data) {
|
|
const packetLength = 1 + 1;
|
|
const buffer = new ArrayBuffer(packetLength);
|
|
const view = new DataView(buffer);
|
|
|
|
view.setUint8(0, 136);
|
|
view.setUint8(1, packetLength);
|
|
|
|
return buffer;
|
|
}; |