Fix CS2D flag missuse

This commit is contained in:
CosminPerRam 2023-09-18 00:07:46 +03:00
parent c8e851d6b2
commit 1907b53c4c
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@ export default class cs2d extends Core {
state.raw.numbots = reader.uint(1);
const flags2 = reader.uint(1);
state.raw.flags2 = flags2;
state.raw.recoil = this.readFlag(flags, 0);
state.raw.offScreenDamage = this.readFlag(flags, 1);
state.raw.hasDownloads = this.readFlag(flags, 2);
state.raw.recoil = this.readFlag(flags2, 0);
state.raw.offScreenDamage = this.readFlag(flags2, 1);
state.raw.hasDownloads = this.readFlag(flags2, 2);
reader.skip(2);
const players = reader.uint(1);
for (let i = 0; i < players; i++) {