Skip to content
Snippets Groups Projects
Commit 7ccd86c1 authored by DarkGod's avatar DarkGod
Browse files

Fix Block description

parent 14044c1a
No related branches found
No related tags found
No related merge requests found
......@@ -242,17 +242,17 @@ newTalent{
bt.all = nil
local n = #bt
local list = table.keys(bt)
local n = #list
if n < 1 then return bt, "(error 2)" end
local e_string = ""
if n == 1 then
e_string = DamageType.dam_def[next(bt)].name
else
local list = table.keys(bt)
for i = 1, #list do if DamageType.dam_def[list[i]] then
list[i] = DamageType.dam_def[list[i]].name
end end
e_string = table.concat(list, ", ")
e_string = table.concatNice(list, ", ", " and ")
end
return bt, e_string
end,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment