Skip to content

Commit f3761e1

Browse files
authored
Hotfix 1.11.18 to Main
2 parents 7335611 + 9e7aef5 commit f3761e1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pokemon-rogue-battle",
33
"private": true,
4-
"version": "1.11.17",
4+
"version": "1.11.18",
55
"type": "module",
66
"scripts": {
77
"start:prod": "vite --mode production",

src/init/init-manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { initializeManifest } from "#app/global-manifest";
22

33
try {
44
const manifest = await fetch("/manifest.json").then(r => r.json());
5-
initializeManifest(manifest);
5+
initializeManifest(manifest["manifest"]);
66
} catch (err) {
77
// Manifest not found (likely local build or path error on live)
88
// TODO: Do we want actual error handling here?

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import "#app/polyfills"; // All polyfills MUST be loaded first for side effects
2-
await import("#init/init-manifest"); // initializes the manifest, must be done *before* i18n is initialized due to being used for caching
3-
await import("#plugins/i18n"); // Initializes i18n on import
2+
import "#init/init-manifest"; // initializes the manifest, must be done *before* i18n is initialized due to being used for caching
3+
import "#plugins/i18n"; // Initializes i18n on import
44

55
import { InvertPostFX } from "#app/pipelines/invert";
66
import { isBeta, isDev } from "#constants/app-constants";

src/ui/handlers/save-slot-select-ui-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export class SaveSlotSelectUiHandler extends MessageUiHandler {
373373
if (!this.cursorObj) {
374374
this.cursorObj = globalScene.add.container(0, 0);
375375
const cursorBox = globalScene.add.nineslice(
376-
0,
376+
1,
377377
15,
378378
"select_cursor_highlight_thick",
379379
undefined,

0 commit comments

Comments
 (0)