fixed rumour recipes dropdown entry

git [02-24-18 - 13:44]
fixed rumour recipes dropdown entry
Filename
FurnitureCatalogue/FurCData.lua
FurnitureCatalogue/FurCFilter.lua
FurnitureCatalogue/data/RumourRecipes.lua
diff --git a/FurnitureCatalogue/FurCData.lua b/FurnitureCatalogue/FurCData.lua
index 1b6842b..acd6969 100644
--- a/FurnitureCatalogue/FurCData.lua
+++ b/FurnitureCatalogue/FurCData.lua
@@ -432,10 +432,10 @@ local function scanFromFiles(shouldScanCharacter)
 			if #itemLink == 0 then itemLink = blueprintLink end
 			local itemId = getItemId(itemLink)
 			recipeArray = parseBlueprint(blueprintLink) or parseFurnitureItem(itemLink) or {}
-
 			if blueprintId ~= itemId then
 				recipeArray.blueprint = blueprintId
 			end
+			recipeArray.recipeListIndex, recipeArray.recipeIndex =  GetItemLinkGrantedRecipeIndices(blueprintLink)
 			recipeArray.origin = FURC_RUMOUR
 			recipeArray.verion = FURC_HOMESTEAD
 			addDatabaseEntry(itemId, recipeArray)
diff --git a/FurnitureCatalogue/FurCFilter.lua b/FurnitureCatalogue/FurCFilter.lua
index fab6bd4..dfc79ad 100644
--- a/FurnitureCatalogue/FurCFilter.lua
+++ b/FurnitureCatalogue/FurCFilter.lua
@@ -81,14 +81,14 @@ end

 -- Source: All, All (craftable), Craftable (known), craftable (unknown), purchaseable
 local function matchSourceDropdown()
-
+
 	-- "All", don't care
 	if FURC_NONE						== ddSource then  -- All
 		return true
 	elseif FURC_CRAFTING_KNOWN 			== ddSource then
 		return recipeArray.origin 		== FURC_CRAFTING and isRecipeArrayKnown(recipeArray)
 	elseif FURC_CRAFTING_UNKNOWN 		== ddSource then
-		return recipeArray.origin 		== FURC_CRAFTING and not isRecipeArrayKnown(recipeArray)
+		return recipeArray.origin 		== FURC_CRAFTING and not isRecipeArrayKnown(recipeArray)
 	elseif FURC_FAVE 					== ddSource then
 		return recipeArray.favorite
 	elseif FURC_VENDOR 					== ddSource then
diff --git a/FurnitureCatalogue/data/RumourRecipes.lua b/FurnitureCatalogue/data/RumourRecipes.lua
index 6f83b5c..cb214f2 100644
--- a/FurnitureCatalogue/data/RumourRecipes.lua
+++ b/FurnitureCatalogue/data/RumourRecipes.lua
@@ -1,8 +1,7 @@
 FurC.RumourRecipes = {
 	118290, -- Antlers, Wall Mount
 	118299, -- Bottle, Beaker
-	118300, -- Bottle, Poison
-
+	118300, -- Bottle, Poison

 	118291, -- Durzog Head, Wall Mount
 	118294, -- Echatere Horns, Wall Mount
@@ -13,10 +12,17 @@ FurC.RumourRecipes = {
 	118283, -- Horn, Display, Huge

 	118296, -- Mantikora Head, Wall Mount
-	118297, -- Mantikora Horns, Wall Mount
-	116473, -- Orcish Effigy, Mammoth
-	118242, -- Rug, Bearskin
+	118297, -- Mantikora Horns, Wall Mount
+	118242, -- Rug, Bearskin
+
+	121207, -- Recipe: Orcish Table with Fur_S_
+	121210, -- Recipe: Orcish Throne, Skull
+	121212, -- Recipe: Orcish Effigy, Bear
+	121213, -- Recipe: Orcish Skull Goblet, Empty

+	116473, -- Orcish Effigy, Mammoth
+	116474, -- Orcish Effigy, Bear
+	116433, -- Orcish Table with Fur_S

 	118053, -- Common Campfire, Outdoor
 	118065, -- Common Cargo Crate, Dry
@@ -47,12 +53,8 @@ FurC.RumourRecipes = {
 	121161, -- Ram Horns, Mounted
 	121216, -- Redguard Divider, Gilded
 	127032, -- Dres Carpet, Fertile Peat
-	121207, -- Orcish Table with Fur_S_

 	118118, -- Candles, Lasting
 	115395, -- Nord Drinking Horn, Display

-
-
-
 }
\ No newline at end of file