Mercurial > wow > wowdb-profiler
comparison Main.lua @ 296:0cad30f414f6
Fix assignment in group_owner_guids_to_pet_guids.
author | James D. Callahan III <jcallahan@curse.com> |
---|---|
date | Mon, 17 Jun 2013 12:51:19 -0500 |
parents | 6f70a1762dde |
children | 57cb63fe5ba8 |
comparison
equal
deleted
inserted
replaced
295:6f70a1762dde | 296:0cad30f414f6 |
---|---|
1080 end | 1080 end |
1081 local pet_guid = _G.UnitGUID(unit_id .. "pet") | 1081 local pet_guid = _G.UnitGUID(unit_id .. "pet") |
1082 | 1082 |
1083 if pet_guid then | 1083 if pet_guid then |
1084 Debug("Adding new pet GUID for %s.", _G.UnitName(unit_id)) | 1084 Debug("Adding new pet GUID for %s.", _G.UnitName(unit_id)) |
1085 group_owner_guids_to_pet_guids[unit_id] = pet_guid | 1085 group_owner_guids_to_pet_guids[unit_guid] = pet_guid |
1086 group_pet_guids[pet_guid] = true | 1086 group_pet_guids[pet_guid] = true |
1087 end | 1087 end |
1088 end | 1088 end |
1089 | 1089 |
1090 | 1090 |