diff AskMrRobot-Serializer/AskMrRobot-Serializer.lua @ 155:3ac4915a2e41 v73

New races, Crucible of Storms auto-logging.
author yellowfive
date Tue, 12 Mar 2019 11:16:36 -0700
parents 31386c009f03
children 544a8d2d83d6
line wrap: on
line diff
--- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua	Tue Jan 22 22:18:52 2019 -0800
+++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua	Tue Mar 12 11:16:36 2019 -0700
@@ -1,6 +1,6 @@
 -- AskMrRobot-Serializer will serialize and communicate character data between users.
 
-local MAJOR, MINOR = "AskMrRobot-Serializer", 72
+local MAJOR, MINOR = "AskMrRobot-Serializer", 73
 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR)
 
 if not Amr then return end -- already loaded by something else
@@ -142,7 +142,9 @@
     ["VoidElf"] = 16,
 	["LightforgedDraenei"] = 17,
 	["DarkIronDwarf"] = 18,
-	["MagharOrc"] = 19
+	["MagharOrc"] = 19,
+	["ZandalariTroll"] = 20,
+	["KulTiranHuman"] = 21
 }
 
 Amr.FactionIds = {
@@ -153,13 +155,15 @@
 
 Amr.InstanceIds = {
 	Uldir = 1861,
-	Dazar = 2070
+	Dazar = 2070,
+	Storms = 2096
 }
 
 -- instances that AskMrRobot currently supports logging for
 Amr.SupportedInstanceIds = {
 	[1861] = true,
-	[2070] = true
+	[2070] = true,
+	[2096] = true
 }