You read the changelog, but I don't think you're understanding the change that was made. There was a change in MQ2, not in your UI, with how information about group members is obtained. Your UI uses the old way, and MQ2 doesn't support it that way any longer.
To fix it, you need to do what JimJohnson said above - you need to open up your xml files for Frequency UI (at least EQUI_GroupWindow.xml, maybe other places, I'm not sure) and change them to use the new method.
What you need to do is search for every occurance of "${Group" and make them "${Group.Member". For example, there are some lines in the window that look like this:
Code: Select all
<TooltipReference>${Group[1].Class.ShortName}</TooltipReference>
That doesn't work anymore. It needs to be changed to this:
Code: Select all
<TooltipReference>${Group.Member[1].Class.ShortName}</TooltipReference>
The old code:
Needs to be:
I count 15 places at a glance where it will need to be changed in the group window. There is a level, class, and distance referenced for each of your 5 groupmates. It should only take you 5 minutes to fix it up. You could even post the update on Frequency's thread if you wanted. I'm sure some people would be grateful.