vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --Needs to be on top of all Map Packs in case IMBA hasn't loaded its default map images yet
2 if not IMBA_MapImages then
3 IMBA_MapImages={}
4 end
5  
6 if not IMBA_MapZones then
7 IMBA_MapZones={}
8 end
9  
10 --Naxx Boss Maps Included With IMBA
11 tinsert(IMBA_MapZones,IMBA_LOCATIONS_NAXX);
12 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Anub'Rekhan";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\anub"})
13 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Four Horsemen";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\4H"})
14 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Gluth";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\gluth"})
15 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Gothik the Harvester";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\gothik"})
16 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Grand Widow Faerlina";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\faerlina"})
17 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Heigan the Unclean";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\heigan"})
18 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Kel'Thuzad";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\kelthuzad"})
19 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Instructor Razuvious";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\razuvious"})
20 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Maexxna";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\maexxna"})
21 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Noth the Plaguebringer";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\noth"})
22 tinsert(IMBA_MapImages,{zone=IMBA_LOCATIONS_NAXX;name="Sapphiron";image="Interface\\AddOns\\IMBA\\textures\\MapImages\\sapphiron"})
23