comparison SkeletonKey.lua @ 78:d4c100b0fd01 v7.1.5-80-release

- Fixed an issue with talent bindings not loading between specialization changes. - Fixed action button text corruption that occurred after changing assignments on an inactive spell.
author Nenue
date Thu, 26 Jan 2017 20:25:04 -0500
parents 6623b7f2c1ca
children 1605319122ce
comparison
equal deleted inserted replaced
77:4ca4cc031e99 78:d4c100b0fd01
45 45
46 46
47 kb.ChangedBindings = {} 47 kb.ChangedBindings = {}
48 kb.SystemBindings = {} 48 kb.SystemBindings = {}
49 kb.ActionTypes = {} 49 kb.ActionTypes = {}
50 kb.TalentBindings = {} 50 -- pet spell categories
51 kb.PetCache = { 51 kb.PetCache = {
52 spell = {}, 52 spell = {},
53 spellslot = {}, 53 spellslot = {},
54 action = {}, 54 action = {},
55 special = {}, 55 special = {},
56 subtext = {} 56 subtext = {}
57 } 57 }
58 -- general spell resolution
58 kb.DynamicSpells = { 59 kb.DynamicSpells = {
59 profession = {}, 60 profession = {},
60 petaction = {}, 61 petaction = {},
61 talent = {}, 62 talent = {},
62 } 63 }
63 kb.TalentCache = {} 64
64 kb.ProfessionCache = {} 65 kb.ProfessionCache = {}
66
67 kb.specInfo = {}
65 kb.pendingCalls = {} 68 kb.pendingCalls = {}
66 kb.pendingAttributes = {} 69 kb.pendingAttributes = {}
67
68 kb.configHeaders = {} 70 kb.configHeaders = {}
69 kb.loadedProfiles = {} 71 kb.loadedProfiles = {}
70 kb.orderedProfiles = {} 72 kb.orderedProfiles = {}
71 kb.buttons = {} 73 kb.buttons = {}
72 kb.macros = {} 74 kb.macros = {}