promotional bannermobile promotional banner

GuildColors

Adds class colors to friends list and guild list

File Details

GuildColors.zip

  • R
  • Jul 18, 2020
  • 3.22 KB
  • 103
  • 1.13.5
  • Classic

File Name

GuildColors.zip

Supported Versions

  • 1.13.5

Attempt to fix some players experiencing issues with not having their Friends/Bnet list update or be available before GuildColors becomes active. This might have been causing numFriends and numOnline to be 'nil' when called instead of an actual number.

 

Code Change:

 

GuildColors.lua

 

Line 283: -- Online WoW friends

Line 284: local numFriends = C_FriendList.GetNumFriends();

Line 285: local numOnline = C_FriendList.GetNumOnlineFriends();

 

Changed To:

 

Line 283: -- Online WoW friends

Line 284: local numFriends = C_FriendList.GetNumFriends() or 0;

Line 285: local numOnline = C_FriendList.GetNumOnlineFriends() or 0;