Skip to content

Remove duplicate portraits.

SilverstarSilverstar Member Posts: 2,207
So now we can have a separate file for sorting the character portraits based on gender, which is great. However, those portraits will still show up again after you've clicked through the sorted list along with the portraits for which you haven't spesified a gender. This issue has been brought up for each of the subsequent patches and it's still present in 2.2, so at this point I'm starting to think it's not a bug but rather a "feature". An annoying feature I would like changed.

To make it perfectly clear what I'm on about here. If I have portraits sorted by gender in a .lua file like this:
function addPortrait(name, gender)
	table.insert(portraits, {name, gender})
end

addPortrait('ASSAS1', 1)
addPortrait('ASSAS2L', 2)
addPortrait('ASSAS3', 1)
addPortrait('ASSAS4', 1)
addPortrait('ASSAS6L', 2)

etc.
and I'm clicking through all the portraits until I go past the end of the list, I do not want each portrait to show up once more. I want to see the non-spesified portraits next, and only those. In this example that could be say BLANK1. If we're stuck with the clicky list, at least let us shorten it by not having duplicates.
Sign In or Register to comment.