From 42df9b8ffb640d7ed9b3832bf28910a665835234 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 23 Mar 2010 02:09:16 -0400 Subject: [PATCH] Renamed NO_PLAYER_FLAG to NO_ROLE_FLAG. --- Datamine.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Datamine.lua b/Datamine.lua index db7dbf8..5727062 100644 --- a/Datamine.lua +++ b/Datamine.lua @@ -600,7 +600,7 @@ end -- BASICALLY A TEMPORARY STORAGE FOR IDS, SO WE CAN SEE CLEANER SCANS AND WHAT NOT, -- WE'LL GO BACK HERE LATER DOWN THE ROAD. ------------------------------------------------------------------------------- -local NO_PLAYER_FLAG = { +local NO_ROLE_FLAG = { -------------------------------------------------------------------------------------------- -----ASSORTED CRAP @@ -2425,7 +2425,7 @@ do -- We need to code this better. Some items (aka bags) won't have a role at all. -- Check for player role flags - if not scan_data.tank and not scan_data.healer and not scan_data.caster and not scan_data.dps and not NO_PLAYER_FLAG[spell_id] then + if not scan_data.tank and not scan_data.healer and not scan_data.caster and not scan_data.dps and not NO_ROLE_FLAG[spell_id] then found_problem = true tinsert(output, " No player role flag.") end -- 1.7.9.5