From b328bb6d48c810ed41240e6f8905865cd4ce2814 Mon Sep 17 00:00:00 2001 From: Lag Date: Sat, 29 May 2021 11:42:00 +0200 Subject: [PATCH] #129 fix lua error with gem sockets --- AtlasLootClassic/Data/ClassFilter.lua | 20 ++++++++----------- .../Documentation/Release_Notes.md | 9 +++++++++ CHANGELOG.md | 11 +++------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/AtlasLootClassic/Data/ClassFilter.lua b/AtlasLootClassic/Data/ClassFilter.lua index 898b6bc3..0e05927e 100644 --- a/AtlasLootClassic/Data/ClassFilter.lua +++ b/AtlasLootClassic/Data/ClassFilter.lua @@ -122,18 +122,14 @@ local FILTER_DATA = { [LE_ITEM_WEAPON_FISHINGPOLE] = true, -- Fishing Poles }, [LE_ITEM_CLASS_GEM] = { - [LE_ITEM_GEM_INTELLECT] = true, -- Intellect - [LE_ITEM_GEM_AGILITY] = true, -- Agility - [LE_ITEM_GEM_STRENGTH] = true, -- Strength - [LE_ITEM_GEM_STAMINA] = true, -- Stamina - [LE_ITEM_GEM_SPIRIT] = true, -- Spirit - [LE_ITEM_GEM_CRITICALSTRIKE] = true, -- Critical Strike - [LE_ITEM_GEM_MASTERY] = true, -- Mastery - [LE_ITEM_GEM_HASTE] = true, -- Haste - [LE_ITEM_GEM_VERSATILITY] = true, -- Versatility - -- [9] -- ignore Other - [LE_ITEM_GEM_MULTIPLESTATS] = true, -- Multiple Stats - [LE_ITEM_GEM_ARTIFACTRELIC] = true, -- Artifact Relic + [1] = true, -- Blue + [2] = true, -- Yellow + [3] = true, -- Purple + [4] = true, -- Green + [5] = true, -- Orange + [6] = true, -- Meta + --[7] = true, -- Simple + [8] = true, -- Prismatic }, [LE_ITEM_CLASS_ARMOR] = { [LE_ITEM_ARMOR_GENERIC] = true, -- Miscellaneous diff --git a/AtlasLootClassic/Documentation/Release_Notes.md b/AtlasLootClassic/Documentation/Release_Notes.md index 39df33ac..9f2d513e 100644 --- a/AtlasLootClassic/Documentation/Release_Notes.md +++ b/AtlasLootClassic/Documentation/Release_Notes.md @@ -2,6 +2,15 @@ This mod is distributed under Version 2 of the GPL. A copy of the GPL is included in this zip file with links to non-english translations. +## v2.2.0-bcc (May 23, 2021) + +- (new) item sets now also show set bonuses in tooltip +- (bc) add Badge of Justice vendor for P1 +- (bc) add pvp insignias +- (bc) add pvp non set items +- (bc) add pvp mounts +- (bc) add missing honor 70 sets + ## v2.1.0 (May 01, 2021) - add customizable stats settings for class filter, there are some problems as blizzard not always returns all item stats diff --git a/CHANGELOG.md b/CHANGELOG.md index 6525fe13..4aeb71d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,6 @@ This mod is distributed under Version 2 of the GPL. A copy of the GPL is includ [Changelog history](https://github.com/Hoizame/AtlasLootClassic/blob/master/AtlasLootClassic/Documentation/Release_Notes.md) -## v2.2.0-bcc (May 23, 2021) - -- (new) item sets now also show set bonuses in tooltip -- (bc) add Badge of Justice vendor for P1 -- (bc) add pvp insignias -- (bc) add pvp non set items -- (bc) add pvp mounts -- (bc) add missing honor 70 sets +## v2.2.1 (May 29, 2021) + +- (bc) fix lua error on loading with gem socket filter