View Single Post
04-28-11, 02:00 PM   #5
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by Ketho View Post
that's a nice and simple solution p3lim posted (without the typo)

.. as for the previous behavior (backpack only), I would use this code .. although I have little experience with "hooking"
Code:
local oldOpenAllBags = OpenAllBags

function OpenAllBags(frame)
	OpenBackpack()
	oldOpenAllBags(frame)
end
'OpenAllBags = OpenBackpack' would do the trick, having the original function run afterwards wouldnt do anything good
  Reply With Quote