From e7343fc55d477dfedca257ba0389c9bf1932d190 Mon Sep 17 00:00:00 2001 From: Ebbe Date: Mon, 23 Jun 2025 11:50:31 +0200 Subject: [PATCH] fixed var Signed-off-by: Ebbe --- flimr-plugin.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flimr-plugin.lua b/flimr-plugin.lua index 15fa64c..450405c 100644 --- a/flimr-plugin.lua +++ b/flimr-plugin.lua @@ -1,7 +1,7 @@ -local debug = true +local debug_mode = true local function debug_print(message) - if debug == true then + if debug_mode == true then Printf(tostring(message)) end end