added forgotten subscriber bank

git [01-23-18 - 20:16]
added forgotten subscriber bank
Filename
IIfA.lua
IIfADataCollection.lua
diff --git a/IIfA.lua b/IIfA.lua
index 439f2e0..608e644 100644
--- a/IIfA.lua
+++ b/IIfA.lua
@@ -48,11 +48,12 @@ local IIFA_COLORDEF_DEFAULT = ZO_ColorDef:New("3399FF")
 -- --------------------------------------------------------------

 IIfA.trackedBags = {
-	[BAG_WORN] 		= true,
-	[BAG_BACKPACK] 	= true,
-	[BAG_BANK] 		= true,
-	[BAG_GUILDBANK] = true,
-	[BAG_VIRTUAL] 	= true,
+	[BAG_WORN] 					= true,
+	[BAG_BACKPACK] 				= true,
+	[BAG_BANK] 					= true,
+	[BAG_SUBSCRIBER_BANK] 		= true,
+	[BAG_GUILDBANK] 			= true,
+	[BAG_VIRTUAL] 				= true,
 }
 IIfA.dropdownBankNames = {
 	"All",
diff --git a/IIfADataCollection.lua b/IIfADataCollection.lua
index 6b50022..f90535b 100644
--- a/IIfADataCollection.lua
+++ b/IIfADataCollection.lua
@@ -96,9 +96,11 @@ IIfA.ScanCurrentCharacter = scanBags
 function IIfA:ScanBank()
 	IIfA:ClearLocationData(GetString(IIFA_BAG_BANK))
 	grabBagContent(BAG_BANK)
+
 	local slotNum = nil
 	if HasCraftBagAccess() then
-			IIfA:ClearLocationData(GetString(IIFA_BAG_CRAFTBAG))
+		grabBagContent(BAG_SUBSCRIBER_BANK)
+		IIfA:ClearLocationData(GetString(IIFA_BAG_CRAFTBAG))
 		slotNum = GetNextVirtualBagSlotId(slotNum)
 		while slotNum ~= nil do
 			IIfA:EvalBagItem(BAG_VIRTUAL, slotNum)