From 500d936c0f8d64dfd18fff3094c812190876217e Mon Sep 17 00:00:00 2001 From: UndeadMaelys Date: Tue, 22 Mar 2022 16:31:15 +0100 Subject: [PATCH] lol --- R2H2.lua | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/R2H2.lua b/R2H2.lua index 3b48af6..7393a25 100644 --- a/R2H2.lua +++ b/R2H2.lua @@ -36,7 +36,7 @@ symbol_composite = { } -- program start -function convertToHeonian(text, ...) +function convertToHeonian(text) local step = true -- this is set to false when a conclusion has been reached local transcribed = false local transcribed_text = "" @@ -44,12 +44,8 @@ function convertToHeonian(text, ...) -- verbose? local debug = false - for _, v in pairs(arg) do - if v == "-v" - or v == "--verbose" - then - debug = true - end + for _, v in pairs(arg) do + if v == "-v" or v == "--verbose" then debug = true end end -- we check if it's necessary to check anything at all