comparison Main.lua @ 515:4a965d3ac13d

Commented out annoying debug line that currently serves no purpose.
author MMOSimca <mmosimca@gmail.com>
date Tue, 08 Nov 2016 17:37:26 -0500
parents fc7a86235431
children 36a08bd1523b
comparison
equal deleted inserted replaced
514:fc7a86235431 515:4a965d3ac13d
1889 end, 1889 end,
1890 UNIT_DIED = function(sub_event, source_guid, source_name, source_flags, dest_guid, dest_name, dest_flags, spell_id, spell_name) 1890 UNIT_DIED = function(sub_event, source_guid, source_name, source_flags, dest_guid, dest_name, dest_flags, spell_id, spell_name)
1891 local unit_type, unit_idnum = ParseGUID(dest_guid) 1891 local unit_type, unit_idnum = ParseGUID(dest_guid)
1892 1892
1893 if not unit_idnum or not UnitTypeIsNPC(unit_type) then 1893 if not unit_idnum or not UnitTypeIsNPC(unit_type) then
1894 Debug("%s: %s is not an NPC, or has no ID.", sub_event, dest_name or _G.UNKNOWN) 1894 --Debug("%s: %s is not an NPC, or has no ID.", sub_event, dest_name or _G.UNKNOWN) -- we really don't need to know this
1895 ClearKilledNPC() 1895 ClearKilledNPC()
1896 private.harvesting = nil 1896 private.harvesting = nil
1897 return 1897 return
1898 end 1898 end
1899 1899