# HG changeset patch # User yellowfive # Date 1541547553 28800 # Node ID cc82eeeec1c85d869534e8e450fddcb2252e4e71 # Parent f40295e81fe08fa65be007e1c30b89eb40c35796 Fixed bug with multiple set import. diff -r f40295e81fe0 -r cc82eeeec1c8 AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Mon Nov 05 16:06:14 2018 -0800 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Tue Nov 06 15:39:13 2018 -0800 @@ -1,6 +1,6 @@ -- AskMrRobot-Serializer will serialize and communicate character data between users. -local MAJOR, MINOR = "AskMrRobot-Serializer", 65 +local MAJOR, MINOR = "AskMrRobot-Serializer", 66 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r f40295e81fe0 -r cc82eeeec1c8 AskMrRobot.toc --- a/AskMrRobot.toc Mon Nov 05 16:06:14 2018 -0800 +++ b/AskMrRobot.toc Tue Nov 06 15:39:13 2018 -0800 @@ -1,7 +1,7 @@ ## Interface: 80000 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 65 +## Version: 66 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb4 diff -r f40295e81fe0 -r cc82eeeec1c8 Import.lua --- a/Import.lua Mon Nov 05 16:06:14 2018 -0800 +++ b/Import.lua Tue Nov 06 15:39:13 2018 -0800 @@ -143,11 +143,13 @@ end end - for i = 1, #specParts do - local err = self:ImportCharacter(specParts[i], isTest, true) - if err ~= nil then - return err - end + for i = 1, #specParts do + if specParts[i] ~= "_bib_" then + local err = self:ImportCharacter(specParts[i], isTest, true) + if err ~= nil then + return err + end + end end -- ensure that all BiB setups are sorted to the top