View Single Post
03-23-24, 05:17 PM   #4
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,327
Every check for watchedFactionID==nil is overwriting watchedFactionID with false whenever it isn't nil.

-also-

Code:
watchedFactionID = watchedFactionID == nil and not inInstance and zonesAndFactions[uiMapID] or watchedFactionID = watchedFactionID == nil and self.fallbackRepID
This should be throwing a syntax error since you can't have an assignment operator (=) in the middle of an expression.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 03-23-24 at 05:25 PM.
  Reply With Quote