[Bug] EQDKP Export (dkp value) #87


  • New
  • Defect
Open
Assigned to _ForgeUser724295
  • _ForgeUser178300 created this issue Mar 28, 2009

    When using headcount to parse my raid logs, it assigns a dkp value to every item it drops. Since i usually don't like doing it middle raid to avoid loss of time, letting eqdkp assign values if the item previously existed on the db, i leave it at the default, 0.

    Now the problem is that the same value (0) is exported in the dkp string and when adding to eqdkp, all the items get "filled" with a dkp value of 0, so eqdkp doesn't get the previously value on the db.

    Importing a raid with another addon (ctrt for example) works as intended.

  • _ForgeUser178300 added the tags New Defect Mar 28, 2009
  • _ForgeUser1897973 posted a comment Mar 28, 2009

    It's not a bug, it's a missing feature :). My dirty solution is this one in Exporter.lua around line 1036:
    -----------
    if ( lootCost > 0 ) then
        noteElementContent = noteElementContent .. " - " .. lootCost .. " DKP]]>"    -- add cost to note
    else
        noteElementContent = noteElementContent .. "]]>"    -- add cost to note
    end
    ------
    instead of
    ------
    noteElementContent = noteElementContent .. " - " .. lootCost .. " DKP]]>"    -- add cost to note
    ------

  • _ForgeUser178300 posted a comment Mar 29, 2009

    Indeed a missing feature :)

    Working just great with that change. Cheers


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