comparison AskMrRobot-Serializer/AskMrRobot-Serializer.lua @ 167:5c68d3fccff3 v78

eternal palace auto-logging
author yellowfive
date Wed, 10 Jul 2019 12:53:00 -0700
parents 3be9cc6f7d20
children d90a740a1d0b
comparison
equal deleted inserted replaced
166:3b3ec0693df8 167:5c68d3fccff3
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", 77 3 local MAJOR, MINOR = "AskMrRobot-Serializer", 78
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 } 154 }
155 155
156 Amr.InstanceIds = { 156 Amr.InstanceIds = {
157 Uldir = 1861, 157 Uldir = 1861,
158 Dazar = 2070, 158 Dazar = 2070,
159 Storms = 2096 159 Storms = 2096,
160 Palace = 2164
160 } 161 }
161 162
162 -- instances that AskMrRobot currently supports logging for 163 -- instances that AskMrRobot currently supports logging for
163 Amr.SupportedInstanceIds = { 164 Amr.SupportedInstanceIds = {
164 [1861] = true, 165 [1861] = true,
165 [2070] = true, 166 [2070] = true,
166 [2096] = true 167 [2096] = true,
168 [2164] = true
167 } 169 }
168 170
169 171
170 ---------------------------------------------------------------------------------------- 172 ----------------------------------------------------------------------------------------
171 -- Public Utility Methods 173 -- Public Utility Methods