This commit is contained in:
Kim Ravn Hansen
2025-10-16 18:51:21 +02:00
parent 0ee62edb6c
commit 6f0e564dfd
2 changed files with 16 additions and 14 deletions

View File

@@ -106,7 +106,6 @@ export class TileMap {
for (let y = 0; y < this.height; y++) {
for (let x = 0; x < this.width; x++) {
const tile = this.tiles[y][x];
console.log(tile);
errorCount += tile[charType] === undefined;
result += tile[charType] ?? undefinedCharPlaceholder;
}