From 025e1bf2c76764151451638df2c0112494a66b17 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Tue, 26 Dec 2023 13:11:58 +0100 Subject: [PATCH] correctly log found room name --- tile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile.lua b/tile.lua index adda5e1..20f43c6 100644 --- a/tile.lua +++ b/tile.lua @@ -63,7 +63,7 @@ function M.updated_config_json(config) for idx, room in ipairs(config.rooms) do log(tostring(room.serial) .. " room '" .. room.name .. "'") if room.serial == sys.get_env "SERIAL" then - log("found my room: ", room.name) + log("found my room: " .. room.name) current_room = room.name text_a = room.text_a text_b = room.text_b