This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What steps will reproduce the problem?1. Install BigWigs, r8360 (current build as of ticket creation)2. Log into character with both Boss Notes and BigWigs enabled
What is the expected output? What do you see instead?Error generated on login. Capture provided.
What version of the product are you using?Version 1.2.5
Do you have an error log of what happened?Date: 2011-05-16 11:38:41ID: 1Error occured in: GlobalCount: 1Message: ..\AddOns\BossNotes_Rules\BigWigsDisplay.lua line 26: attempt to index field 'mod' (a nil value)Debug: (tail call): ? BossNotes_Rules\BigWigsDisplay.lua:26: BossNotes_Rules\BigWigsDisplay.lua:22 (tail call): ? [C]: ? [string "safecall Dispatcher[1]"]:9: [string "safecall Dispatcher[1]"]:5 (tail call): ? ...\AddOns\BossNotes\Libs\AceAddon-3.0\AceAddon-3.0.lua:514: InitializeAddon() ...\AddOns\BossNotes\Libs\AceAddon-3.0\AceAddon-3.0.lua:628: ...\AddOns\BossNotes\Libs\AceAddon-3.0\AceAddon-3.0.lua:621AddOns: Swatter, v5.12.5147 (QuirkyKiwi) ACP, v3.3.14 AddonLoader, v2.0 BigWigs, v3.7 BigWigsCore, v BossNotes, v1.2.5 BossNotesAbilities, v BossNotesEmotes, v BossNotesPersonalNotes, v BossNotesRules, v BlizRuntimeLib_enUS v4.1.0.40100 <us> (ck=101)
Please provide any additional information below.From the BigWigs developers: Boss Notes Rules is using the old way of registering zones (), tell the author to fix it for Big Wigs 3.7.
Change in the mentioned file the function on line 22 to read the following:
function BossNotesRulesBigWigsDisplay:OnInitialize () self.supported = IsAddOnLoaded("BigWigs_Core") if self.supported then self.mod = BigWigs:NewPlugin("Boss Notes Rules", "AceEvent-3.0") self.mod.db = { } self.mod.db.profile = { } self.barTexts = { } end end
It's line 25 that has the real change (if I recall my changes correctly). This will make Boss Notes and Bigwigs cooperate together again.
This problem is _still_ present months later in the new v1.2.7 release in combination with BigWigs r8684 (current build). Identical error to the above on the same line number(s) at logon with both mods loading.
The fix provided by Luckyjack_SL shown below actually solves it. For those who would like more information, the file to put it in is BigWigsDisplay.lua in the BossNotes_Rules folder. To condense the shown fix, just replace the existing line 25 in BigWigsDisplay.lua with:
self.mod = BigWigs:NewPlugin("Boss Notes Rules", "AceEvent-3.0")
To post a comment, please login or register a new account.