Fix CS2D flag missuse

This commit is contained in:
CosminPerRam 2023-09-18 00:07:46 +03:00
parent 75d5a3294c
commit 7e88cee8d7
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@ 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++) {