Mercurial > wow > wowdb-profiler
comparison Constants.lua @ 511:7e8b7e56c9e2
Blacklisted Legion reputation gains in data recording because of world quests (and the inability to distinguish between quest gains and kill gains).
author | MMOSimca <mmosimca@gmail.com> |
---|---|
date | Tue, 08 Nov 2016 15:37:13 -0500 |
parents | c984de658bc2 |
children | 6a8d7447cbba |
comparison
equal
deleted
inserted
replaced
510:3ce6a67dc47f | 511:7e8b7e56c9e2 |
---|---|
904 | 904 |
905 ----------------------------------------------------------------------- | 905 ----------------------------------------------------------------------- |
906 -- Faction/Reputation Data Constants. | 906 -- Faction/Reputation Data Constants. |
907 ----------------------------------------------------------------------- | 907 ----------------------------------------------------------------------- |
908 | 908 |
909 -- Table has: factionID, isBlacklisted, and then the returns from GetFactionInfoByID | |
909 private.FACTION_DATA = { | 910 private.FACTION_DATA = { |
910 -- Used only for private.REP_BUFFS | 911 -- Used only for private.REP_BUFFS |
911 ARGENT_CRUSADE = { 1106, false, _G.GetFactionInfoByID(1106) }, | 912 ARGENT_CRUSADE = { 1106, false, _G.GetFactionInfoByID(1106) }, |
912 BILGEWATER_CARTEL = { 1133, false, _G.GetFactionInfoByID(1133) }, | 913 BILGEWATER_CARTEL = { 1133, false, _G.GetFactionInfoByID(1133) }, |
913 CENARION_CIRCLE = { 609, false, _G.GetFactionInfoByID(609) }, | 914 CENARION_CIRCLE = { 609, false, _G.GetFactionInfoByID(609) }, |
958 DEFENDER_ILLONA = { 1738, true, _G.GetFactionInfoByID(1738) }, | 959 DEFENDER_ILLONA = { 1738, true, _G.GetFactionInfoByID(1738) }, |
959 VIVIANNE = { 1739, true, _G.GetFactionInfoByID(1739) }, | 960 VIVIANNE = { 1739, true, _G.GetFactionInfoByID(1739) }, |
960 AEDA_BRIGHTDAWN = { 1740, true, _G.GetFactionInfoByID(1740) }, | 961 AEDA_BRIGHTDAWN = { 1740, true, _G.GetFactionInfoByID(1740) }, |
961 LEORAJH = { 1741, true, _G.GetFactionInfoByID(1741) }, | 962 LEORAJH = { 1741, true, _G.GetFactionInfoByID(1741) }, |
962 -- Legion reps (blacklisted because of world quests) | 963 -- Legion reps (blacklisted because of world quests) |
964 COURT_OF_FARONDIS = { 1900, true, _G.GetFactionInfoByID(1900) }, | |
965 DREAMWEAVERS = { 1883, true, _G.GetFactionInfoByID(1883) }, | |
966 HIGHMOUNTAIN_TRIBE = { 1828, true, _G.GetFactionInfoByID(1828) }, | |
967 NIGHTFALLEN = { 1859, true, _G.GetFactionInfoByID(1859) }, | |
968 VALARJAR = { 1948, true, _G.GetFactionInfoByID(1948) }, | |
969 WARDENS = { 1894, true, _G.GetFactionInfoByID(1894) }, | |
963 } | 970 } |
964 | 971 |
965 private.REP_BUFFS = { | 972 private.REP_BUFFS = { |
966 -- Tabard Buffs (they screw up everything, so blacklist) | 973 -- Tabard Buffs (they screw up everything, so blacklist) |
967 [_G.GetSpellInfo(93830)] = { -- BILGEWATER CARTEL TABARD | 974 [_G.GetSpellInfo(93830)] = { -- BILGEWATER CARTEL TABARD |