Fix woka list url

This commit is contained in:
Alexis Faizeau
2022-03-04 10:50:44 +01:00
parent 4091606f75
commit 9300b05335
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export class CustomizeScene extends AbstractCharacterScene {
preload() {
const wokaMetadataKey = "woka-list";
this.cache.json.remove(wokaMetadataKey);
this.load.json(wokaMetadataKey, `${PUSHER_URL}/${wokaMetadataKey}`);
this.load.json(wokaMetadataKey, `${PUSHER_URL}/woka/list`);
this.load.once(`filecomplete-json-${wokaMetadataKey}`, () => {
this.playerTextures.loadPlayerTexturesMetadata(this.cache.json.get(wokaMetadataKey));
this.loadCustomSceneSelectCharacters()