comparison AskMrRobot-Serializer/AskMrRobot-Serializer.lua @ 173:556cb7c32580 v81

version bump for 8.3, new allied races
author yellowfive
date Tue, 14 Jan 2020 12:51:11 -0800
parents 5d25f06e0633
children 731cb3cedd3d
comparison
equal deleted inserted replaced
172:5035a5654a2e 173:556cb7c32580
1 -- AskMrRobot-Serializer will serialize and communicate character data between users. 1 -- AskMrRobot-Serializer will serialize and communicate character data between users.
2 2
3 local MAJOR, MINOR = "AskMrRobot-Serializer", 80 3 local MAJOR, MINOR = "AskMrRobot-Serializer", 81
4 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) 4 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR)
5 5
6 if not Amr then return end -- already loaded by something else 6 if not Amr then return end -- already loaded by something else
7 7
8 -- event and comm used for player snapshotting on entering combat 8 -- event and comm used for player snapshotting on entering combat
142 ["VoidElf"] = 16, 142 ["VoidElf"] = 16,
143 ["LightforgedDraenei"] = 17, 143 ["LightforgedDraenei"] = 17,
144 ["DarkIronDwarf"] = 18, 144 ["DarkIronDwarf"] = 18,
145 ["MagharOrc"] = 19, 145 ["MagharOrc"] = 19,
146 ["ZandalariTroll"] = 20, 146 ["ZandalariTroll"] = 20,
147 ["KulTiran"] = 21 147 ["KulTiran"] = 21,
148 ["Vulpera"] = 22,
149 ["Mechagnome"] = 23
148 } 150 }
149 151
150 Amr.FactionIds = { 152 Amr.FactionIds = {
151 ["None"] = 0, 153 ["None"] = 0,
152 ["Alliance"] = 1, 154 ["Alliance"] = 1,