From a07249567fbdacff1e85a47eafce061ae2966280 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 30 Sep 2023 19:09:13 +0200 Subject: [PATCH] fix rendering error when using non-animated room name --- tile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile.lua b/tile.lua index a571fdf..cf31e3f 100644 --- a/tile.lua +++ b/tile.lua @@ -363,7 +363,7 @@ local function view_room(starts, ends, config, x1, y1, x2, y2) if animate then a.draw(now, x1, y1, x2, y2) else - font:write(x1+x, y1, line, font_size, r,g,b,1) + font:write(x1+x, y1, current_room, font_size, r,g,b,1) end end end