fix number not colored
This commit is contained in:
parent
500d936c0f
commit
eb1a31e3f4
@ -2,13 +2,13 @@ return function(tbl)
|
|||||||
for i=1, #tbl do
|
for i=1, #tbl do
|
||||||
local this_number = tbl[i][1]
|
local this_number = tbl[i][1]
|
||||||
local this_word = tbl[i][2]
|
local this_word = tbl[i][2]
|
||||||
local text = colorTextBackground(COLOR.Black, "#")
|
local text = colorTextBackground(COLOR.Black,colorText(COLOR.White,"#")
|
||||||
local length = string.len(#words) - string.len(this_number)
|
local length = string.len(#words) - string.len(this_number)
|
||||||
while length > 0 do
|
while length > 0 do
|
||||||
text = text .. colorTextBackground(COLOR.Black, "0")
|
text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.White,"0")
|
||||||
length = length - 1
|
length = length - 1
|
||||||
end
|
end
|
||||||
text = text .. colorTextBackground(COLOR.Black, 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.HighBlue,this_word[1]))
|
||||||
text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Gray,this_word[3]))
|
text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Gray,this_word[3]))
|
||||||
text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Green,this_word[2]))
|
text = text .. colorTextBackground(COLOR.Black,colorText(COLOR.Green,this_word[2]))
|
||||||
|
Loading…
Reference in New Issue
Block a user