Quantcast

In addon:ScanToolTip(): If the left-side text is "Projectile", flag as "Ammo".

torhal [11-01-09 - 06:37]
In addon:ScanToolTip(): If the left-side text is "Projectile", flag as "Ammo".
Filename
ARLDatamine.lua
diff --git a/ARLDatamine.lua b/ARLDatamine.lua
index 88530bf..f57df66 100644
--- a/ARLDatamine.lua
+++ b/ARLDatamine.lua
@@ -1663,6 +1663,8 @@ do
 				scan_data[text_l] = true
 			elseif text_l == "Off-hand" or text_l == "Main Hand" then	-- Special cases.
 				scan_data["One-Hand"] = true
+			elseif text_l == "Projectile" then
+				scan_data["Ammo"] = true
 			end

 			if text_r and ITEM_TYPES[text_r] then