comparison AskMrRobot-Serializer/AskMrRobot-Serializer.lua @ 189:21a69c63fee8 v92

Added BfA auto-logging back for now.
author yellowfive
date Mon, 19 Oct 2020 11:19:56 -0700
parents 180cb1458674
children 4aeedce4c995
comparison
equal deleted inserted replaced
188:29f11593d255 189:21a69c63fee8
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", 91 3 local MAJOR, MINOR = "AskMrRobot-Serializer", 92
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
154 ["Alliance"] = 1, 154 ["Alliance"] = 1,
155 ["Horde"] = 2 155 ["Horde"] = 2
156 } 156 }
157 157
158 Amr.InstanceIds = { 158 Amr.InstanceIds = {
159 Uldir = 1861,
160 Dazar = 2070,
161 Storms = 2096,
162 Palace = 2164,
163 Nyalotha = 2217,
159 Nathria = 2296 164 Nathria = 2296
160 } 165 }
161 166
162 -- instances that AskMrRobot currently supports logging for 167 -- instances that AskMrRobot currently supports logging for
163 Amr.SupportedInstanceIds = { 168 Amr.SupportedInstanceIds = {
169 [1861] = true,
170 [2070] = true,
171 [2096] = true,
172 [2164] = true,
173 [2217] = true,
164 [2296] = true 174 [2296] = true
165 } 175 }
166 176
167 177
168 ---------------------------------------------------------------------------------------- 178 ----------------------------------------------------------------------------------------