Skip to content

Commit

Permalink
v2.5.06
Browse files Browse the repository at this point in the history
  • Loading branch information
Thumbkin committed Jun 14, 2021
1 parent 552d4c8 commit 59ecb03
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Minimap button & Enhanced tooltip

### Latest version (v2.5.06)

* All professions except Jewelcrafting have all the correct skills, items and quests added
* All professions except Jewelcrafting & Leatherworking have all the correct skills, items and quests added
* Fixed data:
* Set the correct data for each NPC
* All items have the correct phase now, if they drop in specific zone(s), those zone(s) are added
Expand Down
3 changes: 2 additions & 1 deletion VERSION_HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

### v2.5.06 (June 14, 2021)

* All professions except Jewelcrafting have all the skills & items added
* All professions except Jewelcrafting & Leatherworking have all the skills & items added
* Fixed data:
* Set the correct data for each NPC
* All items have the correct phase now, if they drop in specific zone(s), those zone(s) are added
* Removed unused NPCs
* Removed unused or duplicate skills/items

### v2.5.05 (June 8, 2021)

Expand Down
4 changes: 1 addition & 3 deletions logic/profession.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ MTSL_LOGIC_PROFESSION = {
skill_passed_filter = false
end
-- Check availability in expansion
local used_expansion = v.expansion or 1
if not v.expansion then print(profession_name .. ' - ' .. v.id) end
if skill_passed_filter == true and MTSL_TOOLS:ListContainsNumber(expansions, 100 * used_expansion + v.phase) == false then
if skill_passed_filter == true and MTSL_TOOLS:ListContainsNumber(expansions, 100 * v.expansion + v.phase) == false then
skill_passed_filter = false
end
-- Check availability in zone
Expand Down
2 changes: 1 addition & 1 deletion ui/global_variables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MTSLUI_ADDON = {
AUTHOR = "Thumbkin",
NAME = "Missing TradeSkills List (TBC)",
VERSION = "2.5.06",
PATCH_TEXT = '* All professions except Jewelcrafting have all the correct skills, items and quests added\n' ..
PATCH_TEXT = '* All professions except Jewelcrafting & Leatherworking have all the correct skills, items and quests added\n' ..
'* Fixed data:\n' ..
' * Set the correct data for each NPC\n' ..
' * All items have the correct phase now, if they drop in specific zone(s), those zone(s) are added\n' ..
Expand Down

0 comments on commit 59ecb03

Please sign in to comment.