Fix for counter #1


  • New
  • Patch
Open
Assigned to _ForgeUser1097915
  • _ForgeUser308623 created this issue Oct 6, 2008

    What does the provided patch do? Fixes the counter for GrindFu. Without this fix I could not get grindfu to register any kills.

    Please provide any additional information below.
    --- GrindFuold.lua    Mon Oct 06 16:30:05 2008
    +++ GrindFu.lua    Mon Oct 06 16:10:32 2008
    @@ -135,7 +135,7 @@
    function GrindFu:OnEvent(timestamp, eventType, srcGUID, srcName, srcFlags, dstGUID, dstName, dstFlags, spellId, spellName, spellSchool, amount)
         if eventType == "UNIT_DIED" then
             partyFlag = string.sub(dstFlags, string.len(dstFlags))
    -        if not partyFlag == 1 then
    +        if partyFlag ~= 1 then
                 local new = false
                 for k in pairs(killTable) do
                     if killTable[k][1] == dstName then

  • _ForgeUser308623 added the tags New Patch Oct 6, 2008

To post a comment, please login or register a new account.