Skip to content

Commit

Permalink
Fixing lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlackParade committed Mar 23, 2020
1 parent 2eae9c5 commit 77536b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/world/actor/player/updating/player-update-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class PlayerUpdateTask extends Task<void> {
public async execute(): Promise<void> {
return new Promise<void>(resolve => {
const updateFlags: UpdateFlags = this.player.updateFlags;
let playerUpdatePacket: Packet = new Packet(92, PacketType.DYNAMIC_LARGE);
const playerUpdatePacket: Packet = new Packet(92, PacketType.DYNAMIC_LARGE);
playerUpdatePacket.openBitBuffer();

const updateMaskData = new ByteBuffer(5000);
Expand Down

0 comments on commit 77536b3

Please sign in to comment.