Fix accidental deletion

This commit is contained in:
Ice 2024-05-17 22:07:57 -05:00 committed by GitHub
parent 3ec7c7f3d0
commit 20cd6fa541
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -213,6 +213,9 @@ export class LoadingScene extends SceneBase {
this.loadImage('egg_list_bg', 'ui'); this.loadImage('egg_list_bg', 'ui');
this.loadImage('end_m', 'cg');
this.loadImage('end_f', 'cg');
for (let i = 0; i < 10; i++) { for (let i = 0; i < 10; i++) {
this.loadAtlas(`pokemon_icons_${i}`, ''); this.loadAtlas(`pokemon_icons_${i}`, '');
if (i) if (i)
@ -401,4 +404,4 @@ export class LoadingScene extends SceneBase {
async create() { async create() {
this.scene.start("battle"); this.scene.start("battle");
} }
} }