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

@ -6,6 +6,6 @@ WA.onInit().then(() => {
console.log('Player tags: ', WA.player.tags);
});
WA.room.getMap().then((data) => {
WA.room.getTiledMap().then((data) => {
console.log('Map data', data);
})