- Many internal improvaments and bug fixes.

- Fixed target names on custom displays.
- Fixed plugins icons being shown when auto hide menu is on.
- Slash command '/details worldboss' is now updated to show Draenor world bosses.
This commit is contained in:
tercio
2014-11-29 19:47:42 -02:00
parent 81498bafb9
commit b2126cc50b
29 changed files with 455 additions and 411 deletions
@@ -72,6 +72,7 @@ local BloodmaulSlagMines = {
[74787] = 1, --Slave Watcher Crushto
[74366] = 2, --Forgemaster Gog'duh
[86223] = 3, --Roltall
[75786] = 3, --Roltall
[86224] = 4, --Gug'rokk
[74790] = 4, --Gug'rokk
},
@@ -216,7 +217,10 @@ local IronDocks = {
[86231] = 2, --Makogg Emberblade
[80808] = 2, --Neesa Nox
[86232] = 3, --Oshir
[79852] = 3, --Oshir
[86233] = 4, --Skulloc
[83612] = 4, --Skulloc
[83616] = 4, --Skulloc
},
encounters = {
@@ -469,7 +469,7 @@
end
function YouAreNotPrepared:EndCombat()
if (YouAreNotPrepared.last_death_combat_id == YouAreNotPrepared.combat_id) then
if (YouAreNotPrepared.last_death_combat_id == YouAreNotPrepared.combat_counter) then
if (YouAreNotPrepared.db.auto_open) then
YouAreNotPrepared.ShowMeFromInstanceAlert()
else
@@ -493,7 +493,7 @@
death_table = d
if (combat.is_boss) then --> encounter or pvp
YouAreNotPrepared.last_death_combat_id = YouAreNotPrepared.combat_id
YouAreNotPrepared.last_death_combat_id = YouAreNotPrepared.combat_counter
return YouAreNotPrepared:AddDeath ({combat.is_boss.name or combat.enemy or "Unknown", time_of_death, last_cooldown, death_table, max_health, time})
end
end