diff --git a/lib/cjs/index.js b/lib/cjs/index.js index 603009d..46af22d 100644 --- a/lib/cjs/index.js +++ b/lib/cjs/index.js @@ -324,7 +324,8 @@ class CSGOGSI { wallbang: data.penetrated > 0, attackerblind: data.attackerblind, thrusmoke: data.thrusmoke, - noscope: data.noscope + noscope: data.noscope, + attackerinair: data.attackerinair }; this.emit('kill', kill); return kill; diff --git a/lib/cjs/mirv.d.ts b/lib/cjs/mirv.d.ts index 37bde14..96018b7 100644 --- a/lib/cjs/mirv.d.ts +++ b/lib/cjs/mirv.d.ts @@ -28,6 +28,7 @@ export interface RawKill { noscope: boolean; penetrated: number; noreplay: boolean; + attackerinair: boolean; }; } diff --git a/lib/cjs/parsed.d.ts b/lib/cjs/parsed.d.ts index 8211774..f694d76 100644 --- a/lib/cjs/parsed.d.ts +++ b/lib/cjs/parsed.d.ts @@ -172,6 +172,7 @@ export interface KillEvent { attackerblind: boolean; thrusmoke: boolean; noscope: boolean; + attackerinair: boolean; } export interface HurtEvent { diff --git a/lib/esm/index.js b/lib/esm/index.js index 1b7af2c..a9725e4 100644 --- a/lib/esm/index.js +++ b/lib/esm/index.js @@ -316,7 +316,8 @@ class CSGOGSI { wallbang: data.penetrated > 0, attackerblind: data.attackerblind, thrusmoke: data.thrusmoke, - noscope: data.noscope + noscope: data.noscope, + attackerinair: data.attackerinair }; this.emit('kill', kill); return kill; diff --git a/lib/esm/mirv.d.ts b/lib/esm/mirv.d.ts index 37bde14..96018b7 100644 --- a/lib/esm/mirv.d.ts +++ b/lib/esm/mirv.d.ts @@ -28,6 +28,7 @@ export interface RawKill { noscope: boolean; penetrated: number; noreplay: boolean; + attackerinair: boolean; }; } diff --git a/lib/esm/parsed.d.ts b/lib/esm/parsed.d.ts index 8211774..f694d76 100644 --- a/lib/esm/parsed.d.ts +++ b/lib/esm/parsed.d.ts @@ -172,6 +172,7 @@ export interface KillEvent { attackerblind: boolean; thrusmoke: boolean; noscope: boolean; + attackerinair: boolean; } export interface HurtEvent { diff --git a/package.json b/package.json index eda2617..953e151 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csgogsi", - "version": "3.0.2", + "version": "3.0.3", "description": "", "type": "module", "main": "./lib/cjs/index.js", diff --git a/tsc/index.ts b/tsc/index.ts index 264b1b9..6f4f7a5 100644 --- a/tsc/index.ts +++ b/tsc/index.ts @@ -469,7 +469,8 @@ class CSGOGSI { wallbang: data.penetrated > 0, attackerblind: data.attackerblind, thrusmoke: data.thrusmoke, - noscope: data.noscope + noscope: data.noscope, + attackerinair: data.attackerinair }; this.emit('kill', kill); return kill; diff --git a/tsc/mirv.d.ts b/tsc/mirv.d.ts index 37bde14..96018b7 100644 --- a/tsc/mirv.d.ts +++ b/tsc/mirv.d.ts @@ -28,6 +28,7 @@ export interface RawKill { noscope: boolean; penetrated: number; noreplay: boolean; + attackerinair: boolean; }; } diff --git a/tsc/parsed.d.ts b/tsc/parsed.d.ts index 8211774..f694d76 100644 --- a/tsc/parsed.d.ts +++ b/tsc/parsed.d.ts @@ -172,6 +172,7 @@ export interface KillEvent { attackerblind: boolean; thrusmoke: boolean; noscope: boolean; + attackerinair: boolean; } export interface HurtEvent { diff --git a/types/mirv.d.ts b/types/mirv.d.ts index 37bde14..96018b7 100644 --- a/types/mirv.d.ts +++ b/types/mirv.d.ts @@ -28,6 +28,7 @@ export interface RawKill { noscope: boolean; penetrated: number; noreplay: boolean; + attackerinair: boolean; }; } diff --git a/types/parsed.d.ts b/types/parsed.d.ts index 9906e85..8c0913d 100644 --- a/types/parsed.d.ts +++ b/types/parsed.d.ts @@ -135,6 +135,7 @@ export interface KillEvent { attackerblind: boolean; thrusmoke: boolean; noscope: boolean; + attackerinair: boolean; } export interface HurtEvent {