From c7a0d665129e238d038ad33fb38a715d9d423ba7 Mon Sep 17 00:00:00 2001 From: UndeadMaelys Date: Tue, 22 Mar 2022 16:38:53 +0100 Subject: [PATCH] im so bad, i should check changes before pushing --- output_word.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output_word.lua b/output_word.lua index bb78332..5755365 100644 --- a/output_word.lua +++ b/output_word.lua @@ -2,13 +2,13 @@ return function(tbl) for i=1, #tbl do local this_number = tbl[i][1] local this_word = tbl[i][2] - local text = colorTextBackground(COLOR.Black,colorText(COLOR.White,"#") + local text = colorTextBackground(COLOR.Black,colorText(COLOR.White,"#")) local length = string.len(#words) - string.len(this_number) while length > 0 do - text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.White,"0") + text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.White,"0")) length = length - 1 end - text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.White,this_number .. " ") + text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.White,this_number .. " ")) text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.HighBlue,this_word[1])) text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Gray,this_word[3])) text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Green,this_word[2]))