Skip to content
Snippets Groups Projects
Commit 82c5925a authored by DarkGod's avatar DarkGod
Browse files

Assemble correctly respects Lord of Skulls' right of uniqueness and will not...

Assemble correctly respects Lord of Skulls' right of uniqueness and will not merge it with the rest of the rabble!
parent eaf690ee
No related branches found
No related tags found
No related merge requests found
......@@ -490,7 +490,7 @@ newTalent{
if stats.bone_giant then stats.bone_giant:die(self) end
local list = {}
for _, m in ipairs(stats.list) do if m.skeleton_minion then list[#list+1] = m end end
for _, m in ipairs(stats.list) do if m.skeleton_minion and not m.lord_of_skulls then list[#list+1] = m end end
table.sort(list, function(a, b)
local pa, pb = a.life / a.max_life, b.life / b.max_life
if pa == pb then return a.creation_turn < b.creation_turn 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