Spaces:
Running
Running
Rebuild map bundles: fix BatcherPipe null-geometry crash on World Map pill
Browse filesPicks 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>
- web/comboBattler.js +1 -1
- 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(
|
| 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(
|
| 515 |
} catch {
|
| 516 |
}
|
| 517 |
app = null;
|
|
|
|
| 511 |
} catch {
|
| 512 |
}
|
| 513 |
try {
|
| 514 |
+
app?.destroy();
|
| 515 |
} catch {
|
| 516 |
}
|
| 517 |
app = null;
|