diff amr-constants.lua @ 51:6f1bb8fcf64d v18

AskMrRobot.toc - Added line for new SettingsTab file AskMrRobotUi.lua - Added code for new Settings menu amr-constants.lua - Added instance IDs for all WoD 6.0 5-mans and Raids. - Removed legacy SoO IDs. config.lua - Removed "Interface/Addons" options area, migrated all settings to main addon window. localization/localization.en.lua - Added new strings for new Settings tab and new Raid auto-logging ui/CombatLogTab.lua - Removed legacy SoO code - Added auto-logging settings for Highmaul and Blackrock Foundry. ui/SettingsTab.lua - new main window tab for Minimap and Auction House settings options
author TuhMuffinMan <TuhMuffinMan>
date Fri, 28 Nov 2014 13:09:52 -0600
parents 0e78d6424532
children be5dc6c02f77
line wrap: on
line diff
--- a/amr-constants.lua	Sun Nov 09 11:48:42 2014 -0800
+++ b/amr-constants.lua	Fri Nov 28 13:09:52 2014 -0600
@@ -100,16 +100,30 @@
 end
 
 AskMrRobot.instanceIds = {
-	HeartOfFear = 1009,
-	MogushanVaults = 1008,	
-	SiegeOfOrgrimmar = 1136,
-	TerraceOfEndlessSpring = 996,
-	ThroneOfThunder = 1098
+	Auchindoun = 1182,
+	BloodmaulSlagMines = 1175,
+	GrimrailDepot = 1208,
+	IronDocks = 1195,
+	ShadowmoonBurialGrounds = 1176,
+	Skyreach = 1209,
+	TheEverbloom = 1279,
+	UpperBlackrockSpire = 1358,
+	Highmaul = 1228,
+	BlackrockFoundry = 1205
 }
 
 -- instances that we currently support logging for
 AskMrRobot.supportedInstanceIds = {
-	[1136] = true
+	[1182] = true,
+	[1175] = true,
+	[1208] = true,
+	[1195] = true,
+	[1176] = true,
+	[1209] = true,
+	[1279] = true,
+	[1358] = true,
+	[1228] = true,
+	[1205] = true
 }
 
 -- returns true if currently in a supported instance
@@ -298,4 +312,4 @@
         if a == nil and b == nil then return 0 end
         return _slotIdToOrder[a] < _slotIdToOrder[b]
     end)
-end
+end
\ No newline at end of file