quake2ts 0.0.652 → 0.0.653

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quake2ts",
3
- "version": "0.0.652",
3
+ "version": "0.0.653",
4
4
  "description": "Quake II re-release port to TypeScript with WebGL renderer - A complete game engine with physics, networking, and BSP rendering",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -822,8 +822,11 @@ function createSpawnTestContext(mapName) {
822
822
  function createCombatTestContext() {
823
823
  return createTestContext();
824
824
  }
825
- function createPhysicsTestContext() {
826
- return createTestContext();
825
+ function createPhysicsTestContext(bspModel) {
826
+ const context = createTestContext();
827
+ if (bspModel) {
828
+ }
829
+ return context;
827
830
  }
828
831
  function createEntity() {
829
832
  return new import_game2.Entity(1);