- Version: All
- Product: WRobot General
- Type: Bug
- Status: Cannot Reproduce
I think GetParty() is broken for Burning Crusade and possibly Legion? It is not broken in WoTLK, as below snippet works. Running code below always returns 0 members in the group in BC.
var party = wManager.Wow.Helpers.Party.GetParty(); Logging.Write("Total members in group: " + party.Count); foreach (var members in party) { Logging.Write("Player name: " + members.name); }
Recommended Comments
Create an account or sign in to comment