Renaming WA.room.getMap to WA.room.getTiledMap

This commit is contained in:
David Négrier 2021-07-21 16:40:53 +02:00
parent 181545e6b7
commit 080d495044
3 changed files with 5 additions and 5 deletions

View file

@ -79,7 +79,7 @@ export class WorkadventureRoomCommands extends IframeApiContribution<Workadventu
},
});
}
async getMap(): Promise<ITiledMap> {
async getTiledMap(): Promise<ITiledMap> {
const event = await queryWorkadventure({ type: "getMapData", data: undefined });
return event.data as ITiledMap;
}