WarBoard

12 - Warboard INF module causing LOTD PQ Tracker to disappear

What steps will reproduce the problem?
1. go to LOTD
2. go to a PQ
3. PQ tracker does not appear when entering PQ area

What is the expected output? What do you see instead?
PQ Tracker to appear listing PQ Objectives.  Nothing is displayed at all now.
(note: this is only for LOTD, it still works in core zones)

What version of the product are you using?
Warboard 0.5.3

Do you have an error log of what happened?
No.

Please provide any additional information below.
Through enabling and disabling various addon plug-ins for Warboard, I've found that it's the influence plug-in that is causing the issue.

User When Change
computerpunk Jul 20, 2009 at 04:44 UTC Changed status from New to Fixed
Postal11111 Jun 29, 2009 at 15:56 UTC Create

You must login to post a comment. Don't have an account? Register to get one!

  • 1 comment
  • Avatar of Garkin Garkin Jun 30, 2009 at 10:38 UTC - 0 likes

    Function EA_Window_PublicQuestTracker.UpdateInfluenceBar() was updated in 1.3, so I guess you need to replace function WarBoard_Inf.UpdateInfluenceBar() with the following code (based on code from new Interface\Default\EA_ObjectiveTrackers\Source\PublicQuestTrackerWindow.lua):

    function WarBoard_Inf.UpdateInfluenceBar()
        local showBar = DataUtils.UpdateInfluenceBar( "WarBoard_InfPercentBar", EA_Window_PublicQuestTracker.GetLocalAreaInfluenceID() )
        
        local infID, hasPQButNoInfluence = EA_Window_PublicQuestTracker.GetLocalAreaInfluenceID()
        
        -- Hide the location and the influence if we are not in an area that has influence
        WindowSetShowing( "EA_Window_PublicQuestTrackerLocation", not hasPQButNoInfluence )
        WindowSetShowing( "EA_Window_PublicQuestTrackerInfluenceBar", not hasPQButNoInfluence )
        
        -- Show or hide the entire window depending on whether we're in an influence area or a PQ area without influence.
        WindowSetShowing("EA_Window_PublicQuestTracker", showBar or hasPQButNoInfluence)
        EA_Window_PublicQuestTracker.UpdateMainWindowSize()
    end
    
  • 1 comment

Facts

Last updated
Jul 20, 2009
Reported
Jun 29, 2009
Status
Fixed - Developer made requested changes. QA should verify.
Type
Defect - A shortcoming, fault, or imperfection
Priority
Medium - Normal priority.
Votes
0

Reported by

Possible assignees