quake2ts 0.0.248 → 0.0.251

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1928,6 +1928,7 @@ var Entity = class {
1928
1928
  }
1929
1929
  if (type) {
1930
1930
  const ammo = this.client.inventory.ammo;
1931
+ const angles = this.client.v_angle || this.angles;
1931
1932
  return {
1932
1933
  type,
1933
1934
  get cellCount() {
@@ -1936,7 +1937,7 @@ var Entity = class {
1936
1937
  set cellCount(v) {
1937
1938
  ammo.counts[AmmoType.Cells] = v;
1938
1939
  },
1939
- angles: this.angles,
1940
+ angles,
1940
1941
  origin: this.origin,
1941
1942
  health: this.health
1942
1943
  };