Thread: bug report
View Single Post
11-29-11, 06:13 PM   #8
unstoppixel
An Aku'mai Servant
 
unstoppixel's Avatar
AddOn Compiler - Click to view compilations
Join Date: Dec 2010
Posts: 37
Thumbs up Thanks!

Originally Posted by tsod View Post
I was poking around in the code behind the Carbonite.lua and found the spot that is referenced in the many errors inside the game.

In file <Game_Dir>\Interface\Addons\Carbonite\Carbonite.lua
line 26200: for n=1,MAX_BATTLEFIELD_QUEUES do

The problem is that in the newest patch (4.3) the variable constant MAX_BATTLEFIELD_QUEUES no longer exists. It has been replaced with a function that pulls the data from another location. Okay, enough tech babble and on to the fix

Replace the line above with this one and it'll fix it until the developers come out with a new version:

for n=1,GetMaxBattlefieldID() do


Hope this helps.
Thank you!!!
__________________