quake2ts 0.0.231 → 0.0.232

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.
@@ -6848,6 +6848,7 @@ var DemoReader = class {
6848
6848
  };
6849
6849
 
6850
6850
  // src/demo/parser.ts
6851
+ var PROTOCOL_VERSION_RERELEASE = 2023;
6851
6852
  var U_ORIGIN12 = 1 << 0;
6852
6853
  var U_ORIGIN22 = 1 << 1;
6853
6854
  var U_ANGLE22 = 1 << 2;
@@ -6951,6 +6952,9 @@ var NetworkMessageParser = class {
6951
6952
  if (cmd === 6) return ServerCommand.reconnect;
6952
6953
  if (cmd === 16) return ServerCommand.temp_entity;
6953
6954
  }
6955
+ if (this.protocolVersion === PROTOCOL_VERSION_RERELEASE) {
6956
+ return cmd;
6957
+ }
6954
6958
  return cmd;
6955
6959
  }
6956
6960
  parseMessage() {