polats Claude Opus 4.8 (1M context) commited on
Commit
a2e2e23
·
1 Parent(s): 227e45c

Rebuild map bundles: fix BatcherPipe null-geometry crash on World Map pill

Browse files

Picks up auto-battler's chunked-map teardown fix — switching the map sandbox
page (e.g. clicking the World Map pill) no longer crashes the co-mounted Game
map's Pixi renderer via Pixi's shared global pool.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files changed (2) hide show
  1. web/comboBattler.js +1 -1
  2. web/mapSandbox.js +1 -1
web/comboBattler.js CHANGED
@@ -511,7 +511,7 @@ function createChunkedMap(pixi, host, config) {
511
  } catch {
512
  }
513
  try {
514
- app?.destroy(true, { children: true });
515
  } catch {
516
  }
517
  app = null;
 
511
  } catch {
512
  }
513
  try {
514
+ app?.destroy();
515
  } catch {
516
  }
517
  app = null;
web/mapSandbox.js CHANGED
@@ -511,7 +511,7 @@ function createChunkedMap(pixi, host, config) {
511
  } catch {
512
  }
513
  try {
514
- app?.destroy(true, { children: true });
515
  } catch {
516
  }
517
  app = null;
 
511
  } catch {
512
  }
513
  try {
514
+ app?.destroy();
515
  } catch {
516
  }
517
  app = null;