Quantcast

Have the miner check for critical hit and weapon damage for player type flags.

ackis [08-10-09 - 19:19]
Have the miner check for critical hit and weapon damage for player type flags.
Filename
ARLDatamine.lua
diff --git a/ARLDatamine.lua b/ARLDatamine.lua
index 468b2c9..754da24 100644
--- a/ARLDatamine.lua
+++ b/ARLDatamine.lua
@@ -1411,6 +1411,14 @@ do
 					scan_data.dps = true
 					scan_data.caster = false
 					scan_data.healer = false
+				elseif (strmatch(text,"critical hit")) then
+					scan_data.dps = true
+					scan_data.caster = false
+					scan_data.healer = false
+				elseif (strmatch(text,"weapon damage")) then
+					scan_data.dps = true
+					scan_data.caster = false
+					scan_data.healer = false
 				elseif (strmatch(text,"ranged crit")) then
 					scan_data.dps = true
 					scan_data.tank = false