From d7ff5b432b4343774807f5b15ee72ef3e343fdd3 Mon Sep 17 00:00:00 2001 From: Kim Ravn Hansen Date: Thu, 16 Oct 2025 18:57:39 +0200 Subject: [PATCH] bugfix - actually set the properties of a tile --- frontend/ascii_tile_types.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/ascii_tile_types.js b/frontend/ascii_tile_types.js index 6e117ed..ffa7f3d 100755 --- a/frontend/ascii_tile_types.js +++ b/frontend/ascii_tile_types.js @@ -156,6 +156,8 @@ export class Tile { if (!Object.hasOwn(this, key) /* Object.prototype.hasOwnProperty.call(this, key) */) { console.warn("Unknown tile property", { key, val, properties }); } + + this[key] = val; } //