I do...
Normally a zone short name is associated with a more human readable long name. So things like:
Code:
thuledream = 'Fear Itself'
But, in the case of those fancy guild halls, both are associated with same short name like this:
[CODE language=lua]
guildhalllrg = {
'Palatial Guildhall',
'Grand Guild Hall'
}
[/CODE]
So in this case guidhallrg is associated with a table that has two values, not a string value.
In the code for the Favorites tab, we compare the name of the zone and see if it's in the Favorites from your settings file here:
[CODE language=lua]
if ((#search_term > 2 and string.find(zone.name:lower(), search_term:lower())) and zone.favorite) or #search_term < 1 and zone.favorite then
[/CODE]
We're expecting zone.name to be a string, and in the case of these fancy Guild Halls, it's a table. So I need to change the comparison to take into account it could be a table and search thru the values in the table.