View Single Post
08-19-11, 11:43 PM   #6
Ekaterina
A Theradrim Guardian
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 65
Hi,
Looking at your code, I think it's a capitalisation issue.

This:
if UnitFactionGroup("player") == "HORDE" then

Should be this:
if UnitFactionGroup("player") == "Horde" then
  Reply With Quote