luxury furnisher, fixed tooltips
git [05-12-18 - 07:26]
luxury furnisher, fixed tooltips
diff --git a/FurCTooltip.lua b/FurCTooltip.lua
index 12a77d6..939613b 100644
--- a/FurCTooltip.lua
+++ b/FurCTooltip.lua
@@ -35,20 +35,18 @@ local function addTooltipData(control, itemLink)
local itemId, recipeArray = nil
if nil == itemLink or FURC_EMPTY_STRING == itemLink then return end
local isRecipe = IsItemLinkFurnitureRecipe(itemLink)
-
- if not isRecipe or IsItemLinkPlaceableFurniture(itemLink) then return end
tryCreateDebugOutput(itemId, itemLink)
itemLink = (isRecipe and GetItemLinkRecipeResultItemLink(itemLink)) or itemLink
+ if not (isRecipe or IsItemLinkPlaceableFurniture(itemLink)) then return end
itemId = FurC.GetItemId(itemLink)
recipeArray = FurC.Find(itemLink)
-- |H0:item:118206:5:1:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0|h|h
if not recipeArray then return end
-
local unknown = not FurC.CanCraft(itemId, recipeArray)
diff --git a/FurnitureCatalogue.txt b/FurnitureCatalogue.txt
index 6715a3c..c264cd5 100644
--- a/FurnitureCatalogue.txt
+++ b/FurnitureCatalogue.txt
@@ -1,6 +1,6 @@
## Title: FurnitureCatalogue
## Author: manavortex
-## Version: 2.3.1
+## Version: 2.3.2
## APIVersion: 100022 100023
## SavedVariables: FurnitureCatalogue_Settings
## OptionalDependsOn: pChat
diff --git a/data/LuxuryFurnisher.lua b/data/LuxuryFurnisher.lua
index 8db843e..7e0c888 100644
--- a/data/LuxuryFurnisher.lua
+++ b/data/LuxuryFurnisher.lua
@@ -2,6 +2,19 @@ FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
FurC.LuxuryFurnisher[FURC_DRAGONS] = {
+ [134839] = { -- Necromancer's Brazier, Cold Flame
+ itemPrice = 10000,
+ itemDate = "2018-05-12",
+ },
+ [134840] = { -- Necromancer's Spire, Compact
+ itemPrice = 75000,
+ itemDate = "2018-05-12",
+ },
+ [134841] = { -- Necromancer's Spire, Huge
+ itemPrice = 100000,
+ itemDate = "2018-05-12",
+ },
+
[134836] = { -- Necromancer's Brazier, Flame
itemPrice = 10000,
itemDate = "2018-05-04",
diff --git a/startup.lua b/startup.lua
index dcec582..39c6ecb 100644
--- a/startup.lua
+++ b/startup.lua
@@ -1,7 +1,7 @@
FurnitureCatalogue = {}
FurnitureCatalogue.name = "FurnitureCatalogue"
FurnitureCatalogue.author = "manavortex"
-FurnitureCatalogue.version = "2.3.1"
+FurnitureCatalogue.version = "2.3.2"
FurnitureCatalogue.CharacterName = nil
FurnitureCatalogue.settings = {}