Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/x64' into nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
OhMyGuus committed Dec 22, 2020
2 parents 1797a3d + c6ace97 commit bfaee0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/GameReader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class GameReader {
const { address, last } = this.offsetAddress(playerAddrPtr, this.offsets.player.offsets);
const playerData = readBuffer(this.amongUs.handle, address + last, this.offsets.player.bufferLength);
const player = this.parsePlayer(address + last, playerData);
playerAddrPtr += 4;
playerAddrPtr += this.is_64bit? 8 : 4;
if (!player) continue;
players.push(player);

Expand Down

0 comments on commit bfaee0e

Please sign in to comment.