changed words; adjusted formatting

This commit is contained in:
UndeadMaelys
2022-03-22 20:38:17 +01:00
parent caaba4a058
commit 9e1e0e603c
2 changed files with 24 additions and 19 deletions

View File

@@ -20,25 +20,28 @@ return function(tbl)
print(text)
if show_all then
text = ""
if this_word[4] ~= "" then
text = text .. colorText(COLOR.HighCyan,"\tCanon origin: ")
text = text .. colorText(COLOR.HighCyan,this_word[4])
print(text)
if this_word[4] ~= ""
or this_word[5] ~= ""
or this_word[6] ~= "" then
text = ""
if this_word[4] ~= "" then
text = text .. colorText(COLOR.HighCyan,"\tCanon origin: ")
text = text .. colorText(COLOR.HighCyan,this_word[4])
print(text)
end
text = ""
if this_word[5] ~= "" then
text = text .. colorText(COLOR.HighPurple,"\tMeta origin: ")
text = text .. colorText(COLOR.HighPurple,this_word[5])
print(text)
end
text = ""
if this_word[6] ~= "" then
text = text .. colorText(COLOR.HighYellow,"\tNotes: ")
text = text .. colorText(COLOR.HighYellow,this_word[6])
print(text)
end
end
text = ""
if this_word[5] ~= "" then
text = text .. colorText(COLOR.HighPurple,"\tMeta origin: ")
text = text .. colorText(COLOR.HighPurple,this_word[5])
print(text)
end
text = ""
if this_word[6] ~= "" then
text = text .. colorText(COLOR.HighYellow,"\tNotes: ")
text = text .. colorText(COLOR.HighYellow,this_word[6])
print(text)
end
print("")
end
end
end