View Single Post
04-28-11, 02:02 PM   #7
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by help137 View Post
I use a one-bag type addon anyway, so this doens't really bother me, but what does is that B no longer CLOSES the bags. It's no longer a toggle. Anyone have a solution to that?

-K
Code:
function OpenAllBags()
    if(IsBagOpen(0)) then
        OpenBackpack()
    else
        CloseBackpack()
    end
end
or just this
Code:
OpenBackpack = ToggleBackpack
  Reply With Quote