luxury furnisher

git [06-29-18 - 14:40]
luxury furnisher
Filename
FurCContextMenu.lua
FurnitureCatalogue.txt
data/02_Morrowind/M_LuxuryFurnisher.lua
data/LuxuryFurnisher.lua
startup.lua
diff --git a/FurCContextMenu.lua b/FurCContextMenu.lua
index b183702..b53e630 100644
--- a/FurCContextMenu.lua
+++ b/FurCContextMenu.lua
@@ -61,14 +61,16 @@ local function addMenuItems(itemLink, recipeArray)
 	if recipeArray.origin ~= FURC_CRAFTING then
 		AddCustomMenuItem(GetString(SI_FURC_POST_ITEMSOURCE),   postItemSource, MENU_ADD_OPTION_LABEL)
 	else
-		if IsItemLinkFurnitureRecipe(itemLink) then
+        local isRecipe
+		if isRecipe then
 			AddCustomMenuItem(GetString(SI_FURC_POST_ITEM),     postRecipeResult, MENU_ADD_OPTION_LABEL)
-            AddCustomMenuItem(GetString(SI_FURC_POST_RECIPE),   postRecipe, MENU_ADD_OPTION_LABEL)
-		end
+		end
+        if isRecipe or recipeArray.blueprint then
+             AddCustomMenuItem(GetString(SI_FURC_POST_RECIPE),   postRecipe, MENU_ADD_OPTION_LABEL)
+        end
 		AddCustomMenuItem(GetString(SI_FURC_POST_MATERIAL),     postMaterial, MENU_ADD_OPTION_LABEL)
 		AddFurnitureShoppingListMenuEntry(itemLink, true)
 	end
-
 end

 function FurC_HandleClickEvent(itemLink, button, control)		-- button being mouseButton here
diff --git a/FurnitureCatalogue.txt b/FurnitureCatalogue.txt
index 1d28eac..7e64a90 100644
--- a/FurnitureCatalogue.txt
+++ b/FurnitureCatalogue.txt
@@ -1,6 +1,6 @@
 ## Title: FurnitureCatalogue
 ## Author: manavortex
-## Version: 2.5.5
+## Version: 2.5.7
 ## APIVersion: 100023
 ## SavedVariables: FurnitureCatalogue_Settings
 ## OptionalDependsOn: pChat
diff --git a/data/02_Morrowind/M_LuxuryFurnisher.lua b/data/02_Morrowind/M_LuxuryFurnisher.lua
index ec16e28..1e1d2a8 100644
--- a/data/02_Morrowind/M_LuxuryFurnisher.lua
+++ b/data/02_Morrowind/M_LuxuryFurnisher.lua
@@ -70,20 +70,6 @@ FurC.LuxuryFurnisher[FURC_MORROWIND] = {
 		itemDate	= "2017-07-21",
 	},

-	-- July 15 - July 16
-	[126567] = {	-- Daedric Brazier, Ritual
-		itemPrice 	= 10834,
-		itemDate	= "2017-07-14",
-	},
-	[126565] = {	-- Daedric Platform, Sarcophagus
-		itemPrice 	= 8125,
-		itemDate	= "2017-07-14",
-	},
-	[126566] = {	-- Daedric Sarcophagus, Sealed
-		itemPrice 	= 27084,
-		itemDate	= "2017-07-14",
-	},
-



diff --git a/data/LuxuryFurnisher.lua b/data/LuxuryFurnisher.lua
index e1c918a..fe7401d 100644
--- a/data/LuxuryFurnisher.lua
+++ b/data/LuxuryFurnisher.lua
@@ -1,6 +1,27 @@
 FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
 FurC.LuxuryFurnisher[FURC_ALTMER] = {

+
+    [139094= { -- Daedric Altar, Periyte
+		itemPrice 	= 40000,
+		itemDate	= "2016-06-30",
+	},
+
+	-- July 15 - July 16
+	[126567] = {	-- Daedric Sarcophagus, Sealed
+		itemPrice 	= 10000,
+		itemDate	= "2016-06-30",
+	},
+	[126565] = {	-- Daedric Platform, Sarcophagus
+		itemPrice 	= 8000,
+		itemDate	= "2016-06-30",
+	},
+	[126566] = {	-- Daedric Brazier, Ritual
+		itemPrice 	= 25000,
+		itemDate	= "2016-06-30",
+	},
+
+
 	[126562] = {	-- Dwarven Crystal Mechanism
 		itemPrice 	= 50000,
 		itemDate	= "2018-06-23",
diff --git a/startup.lua b/startup.lua
index 3d0e643..6c99ba9 100644
--- a/startup.lua
+++ b/startup.lua
@@ -1,7 +1,7 @@
 FurnitureCatalogue 					= {}
 FurnitureCatalogue.name				= "FurnitureCatalogue"
 FurnitureCatalogue.author			= "manavortex"
-FurnitureCatalogue.version          = "2.5.5"
+FurnitureCatalogue.version          = "2.5.7"
 FurnitureCatalogue.CharacterName	= nil
 FurnitureCatalogue.settings			= {}