1
0
forked from noxious/client

Replaced some code vars for consistency, added start of teleport logics

This commit is contained in:
2024-08-21 23:10:29 +02:00
parent 4d326f24ac
commit 2211824832
7 changed files with 130 additions and 12 deletions

View File

@ -86,7 +86,7 @@ export const updateZoneTiles = (zoneTilemap: Tilemap, tiles: Phaser.Tilemaps.Til
}
// Update the tilemap with any new 'blank_tile' entries
zoneTiles.forEach((row, y) => {
zoneTiles.forEach((row: string[], y: number) => {
row.forEach((tileId, x) => {
placeTile(zoneTilemap, tiles, x, y, tileId)
})