View Single Post
06-25-18, 05:39 AM   #1
thomasjohnshannon
A Theradrim Guardian
 
thomasjohnshannon's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 68
Duplicate Function in UIParent.lua

Not really a bug but you have a duplicate function in UIParent.lua starting at line 911.

Lua Code:
  1. function ToggleCommunitiesFrame()
  2.     Communities_LoadUI();
  3.     ToggleFrame(CommunitiesFrame);
  4. end
  5.  
  6. function ToggleCommunitiesFrame()
  7.     Communities_LoadUI();
  8.     ToggleFrame(CommunitiesFrame);
  9. end


PS: You also have FACTION_BAR_COLORS declared as a global in two locations. It can be found in ReputationFrame.lua and ReputationBar.lua.
__________________
Thomas aka Urnn

Last edited by thomasjohnshannon : 06-25-18 at 05:42 AM.
  Reply With Quote