# HG changeset patch # User yellowfive # Date 1437206684 25200 # Node ID 6abc0858b45eef8a08e663d2ac23664626660cb3 # Parent 8af362b95d2f8165d3c13f649ab1044ddd9d3fdf fixed minor bug with pulling bank items into your bags diff -r 8af362b95d2f -r 6abc0858b45e AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Mon Jul 06 17:40:09 2015 -0700 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Sat Jul 18 01:04:44 2015 -0700 @@ -1,7 +1,7 @@ -- AskMrRobot-Serializer will serialize and communicate character data between users. -- This is used primarily to associate character information to logs uploaded to askmrrobot.com. -local MAJOR, MINOR = "AskMrRobot-Serializer", 27 +local MAJOR, MINOR = "AskMrRobot-Serializer", 28 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r 8af362b95d2f -r 6abc0858b45e AskMrRobot.toc --- a/AskMrRobot.toc Mon Jul 06 17:40:09 2015 -0700 +++ b/AskMrRobot.toc Sat Jul 18 01:04:44 2015 -0700 @@ -1,7 +1,7 @@ ## Interface: 60200 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 27 +## Version: 28 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb2 diff -r 8af362b95d2f -r 6abc0858b45e Gear.lua --- a/Gear.lua Mon Jul 06 17:40:09 2015 -0700 +++ b/Gear.lua Sat Jul 18 01:04:44 2015 -0700 @@ -546,7 +546,7 @@ _pendingEquip = nil return - elseif bestItem and bestItem.bag and bestItem.bag >= NUM_BAG_SLOTS + 1 and bestItem.bag <= NUM_BAG_SLOTS + NUM_BANKBAGSLOTS then + elseif bestItem and bestItem.bag and (bestItem.bag == BANK_CONTAINER or bestItem.bag >= NUM_BAG_SLOTS + 1 and bestItem.bag <= NUM_BAG_SLOTS + NUM_BANKBAGSLOTS) then -- find first empty bag slot local invBag, invSlot = findFirstEmptyBagSlot() if not invBag then