Thread: bug report
View Single Post
11-29-11, 05:00 PM   #6
tsod
A Defias Bandit
AddOn Author - Click to view addons
Join Date: Nov 2011
Posts: 3
Cool Temporary fix until a new version of Carbonite is released

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.