Mercurial > wow > wowdb-profiler
comparison Main.lua @ 253:679f21ad88a3
Commented out the blacklist-searching debug.
author | James D. Callahan III <jcallahan@curse.com> |
---|---|
date | Sun, 17 Mar 2013 01:21:54 -0500 |
parents | 5a895250748c |
children | 1a6ef614a144 |
comparison
equal
deleted
inserted
replaced
252:5a895250748c | 253:679f21ad88a3 |
---|---|
1311 function WDP:COMBAT_LOG_EVENT_UNFILTERED(event_name, time_stamp, sub_event, hide_caster, source_guid, source_name, source_flags, source_raid_flags, dest_guid, dest_name, dest_flags, dest_raid_flags, ...) | 1311 function WDP:COMBAT_LOG_EVENT_UNFILTERED(event_name, time_stamp, sub_event, hide_caster, source_guid, source_name, source_flags, source_raid_flags, dest_guid, dest_name, dest_flags, dest_raid_flags, ...) |
1312 local combat_log_func = COMBAT_LOG_FUNCS[sub_event] | 1312 local combat_log_func = COMBAT_LOG_FUNCS[sub_event] |
1313 | 1313 |
1314 if not combat_log_func then | 1314 if not combat_log_func then |
1315 if not NON_DAMAGE_EVENTS[sub_event] then | 1315 if not NON_DAMAGE_EVENTS[sub_event] then |
1316 Debug("Recording for %s", sub_event) | 1316 -- Uncomment to look for other sub-events to blacklist. |
1317 -- Debug("Recording for %s", sub_event) | |
1317 previous_combat_event.source_guid = source_guid | 1318 previous_combat_event.source_guid = source_guid |
1318 previous_combat_event.source_name = source_name | 1319 previous_combat_event.source_name = source_name |
1319 previous_combat_event.dest_guid = dest_guid | 1320 previous_combat_event.dest_guid = dest_guid |
1320 previous_combat_event.dest_name = dest_name | 1321 previous_combat_event.dest_name = dest_name |
1321 end | 1322 end |