Mercurial > wow > wowdb-profiler
changeset 303:e54e370e3a01
Removed some unnecessary debug prints.
author | James D. Callahan III <jcallahan@curse.com> |
---|---|
date | Mon, 08 Jul 2013 13:17:22 -0500 |
parents | ca7abdbda078 |
children | 1e55a8ebedbd |
files | Main.lua |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/Main.lua Mon Jul 08 10:47:55 2013 -0500 +++ b/Main.lua Mon Jul 08 13:17:22 2013 -0500 @@ -1078,14 +1078,12 @@ local current_pet_guid = group_owner_guids_to_pet_guids[unit_guid] if current_pet_guid then - Debug("Removing existing pet GUID for %s", _G.UnitName(unit_id)) group_owner_guids_to_pet_guids[unit_guid] = nil group_pet_guids[current_pet_guid] = nil end local pet_guid = _G.UnitGUID(unit_id .. "pet") if pet_guid then - Debug("Adding new pet GUID for %s.", _G.UnitName(unit_id)) group_owner_guids_to_pet_guids[unit_guid] = pet_guid group_pet_guids[pet_guid] = true end @@ -1099,14 +1097,11 @@ table.wipe(group_member_guids) - Debug("GROUP_ROSTER_UPDATE: %s group - %d members.", unit_type, group_size) - for index = 1, group_size do local unit_id = unit_type .. index local unit_guid = _G.UnitGUID(unit_id) group_member_guids[unit_guid] = true - Debug("%s (%s) added as GUID %s", unit_id, _G.UnitName(unit_id), unit_guid) UpdateUnitPet(unit_guid, unit_id) end group_member_guids[PLAYER_GUID] = true