View Single Post
11-08-16, 08:07 AM   #11
Mayron
A Frostmaul Preserver
 
Mayron's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 275
Thank you for the help! The problem was that I was using:

Lua Code:
  1. if (type(OrderHallCommandBar.TroopSummary) == "table") then

instead of:

Lua Code:
  1. local info = C_Garrison.GetClassSpecCategoryInfo(LE_FOLLOWER_TYPE_GARRISON_7_0)

And I think needed to request the info first using:

Lua Code:
  1. C_Garrison.RequestClassSpecCategoryInfo(LE_FOLLOWER_TYPE_GARRISON_7_0)

I wanted to reposition the Blizzard Troop icons but this seems impossible because I have no clue when they get created. Instead, like what everyone else appears to be doing, I need to create my own troop icons and hide the Blizzard ones. I'm still unsure how to hide the Blizzard ones considering I can't seem to target them. Maybe just create an entirely new bar from scratch..

Last edited by Mayron : 11-08-16 at 08:09 AM.
  Reply With Quote