From a07149469dd5958b2ff7381997f42613654ebb5d Mon Sep 17 00:00:00 2001 From: pompachomp Date: Tue, 21 Jul 2009 09:22:51 +0000 Subject: [PATCH] fixed a check in the dataminer. --- ARLDatamine.lua | 4 ++-- Docs/Documentation.txt | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 23fcde8..b1d1ead 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1428,7 +1428,7 @@ do scan_data.dps = true scan_data.caster = false scan_data.healer = false - elseif (strmatch(text,"feral attack")) then + elseif (strmatch(text,"feral attack power")) then scan_data.tank = true scan_data.dps = true scan_data.caster = false @@ -1451,7 +1451,7 @@ do scan_data.caster = false scan_data.healer = false scan_data.verifiedclass = true - elseif (strmatch(text,"dodge")) then + elseif (strmatch(text,"dodge") and (strmatch(text, "set:") == nil)) then scan_data.dps = false scan_data.tank = true scan_data.caster = false diff --git a/Docs/Documentation.txt b/Docs/Documentation.txt index e6916af..49b028d 100644 --- a/Docs/Documentation.txt +++ b/Docs/Documentation.txt @@ -32,7 +32,7 @@ In the RecipeDB is a single file for each profession. Each recipe is inserted in self:addTradeFlags(RecipeDB,2329,1,2,3,21,22,23,24,25,26,27,28,29,30,36,41,51,52) self:addTradeAcquire(RecipeDB,2329,8,8) -The first line is a human readabile comment, which states the recipe name, with the [http://www.wowwiki.com/SpellLink spell ID] of the recipe. +The first line is a human readable comment, which states the recipe name, with the [http://www.wowwiki.com/SpellLink spell ID] of the recipe. Please see the [[api]] page for detailed documentation on the database methods. @@ -92,7 +92,7 @@ This filters will prevent the recipe from showing up regardless of any other fil **mobdrop **item (This includes ALL weapon and armor item types) **player types (melee, tank, caster, healer) -**reputation (All recputation flags) +**reputation (All reputation flags) Note that if NO acquire methods remain unfiltered, the recipe will not be displayed. @@ -116,7 +116,7 @@ A recipe can be flagged with many (or even all) of the below flags. They are def *13-20 = Reserved for future use ====Class==== These flags are defined as: -# Can this class use this recipe? (ie: Rage potions, glpyhs, etc) +# Can this class use this recipe? (ie: Rage potions, glyphs, etc) # Can this class learn this recipe? (ie: Thistle tea) *21 = Deathknight *22 = Druid @@ -186,7 +186,7 @@ These flags are defined as: *105 = Consortium *106 = Keepers of Time *107 = Lower City -*108 = Nagrand Factions (Maghar/Kureni) +*108 = Nagrand Factions (Maghar/Kurenai) *109 = Scale of the Sands *110 = The Scryer *111 = Sha'tar @@ -202,8 +202,8 @@ These flags are defined as: *120 = The Kalu'ak *121 = The Oracles *122 = The Wyrmrest Accord -*123 = Wrath Common Factions (The Silver Convenant/The Sunreavers) -*124 = Wrath Common Factions (Explorer's League/Hand of Vengance) +*123 = Wrath Common Factions (The Silver Covenant/The Sunreavers) +*124 = Wrath Common Factions (Explorers' League/The Hand of Vengeance) *125 = Wrath Common Factions(Explorer's League/Valiance Expedition) *126 = Wrath Common Factions (The Frostborn/The Taunka) *127 = Wrath Common Factions (Alliance Vanguard/Horde Expedition) @@ -282,7 +282,7 @@ Defined below is the specification for the arguments passed back into addTradeAc ::Name - Name of the recipe ::Rarity - Rarity level of recipe ** ::RecipeLink - String containing the recipe link -::Display - Boolean determing if we display the recipe or not (via filters) +::Display - Boolean determining if we display the recipe or not (via filters) ::Known - Boolean determining if you know the recipe ::Search - Boolean determining if it's in the search results (true = yes, false = no) ::Profession - Flag for identifying which profession it is. -- 1.7.9.5