Does'nt work on 4.3 PTR #111


  • Defect
  • New
Open
Assigned to elkano
  • _ForgeUser7639763 created this issue Oct 2, 2011

    Doesn't appear anything exept mini-button
    2.3.1 - r167

    ******
    Date: 2011-10-02 13:41:22
    ID: 1
    Error occured in: Global
    Count: 1
    Message: ...Ons\ElkBuffBars\libs\LibAbacus-3.0\LibAbacus-3.0.lua line 118:
       Division by zero
    Debug:
       [C]: ?
       ...Ons\ElkBuffBars\libs\LibAbacus-3.0\LibAbacus-3.0.lua:118: in main chunk
    AddOns:
      Swatter, v3.2.4 (<%codename%>)
      ElkBuffBars, v2.3.1-167
      BlizRuntimeLib_enUS v4.3.0.40200 <public-test.logon.battle.net>
      (ck=7d)

    ******

    Date: 2011-10-02 13:41:27
    ID: 2
    Error occured in: Global
    Count: 1
    Message: ..\AddOns\ElkBuffBars\EBB_Bar.lua line 625:
       attempt to call method 'FormatDurationCondensed' (a nil value)
    Debug:
       ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:25:
          ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:23
       ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:1051: ManualEnable()
       ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:979:
          ...ddOns\ElkBuffBars\libs\AceAddon-2.0\AceAddon-2.0.lua:973
       [C]: ?
       ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:260: TriggerEvent()
       ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:910:
          ...ddOns\ElkBuffBars\libs\AceEvent-2.0\AceEvent-2.0.lua:903
    AddOns:
      Swatter, v3.2.4 (<%codename%>)
      ElkBuffBars, v2.3.1-167
      BlizRuntimeLib_enUS v4.3.0.40200 <public-test.logon.battle.net>
    ****
      (ck=7d)

  • _ForgeUser7639763 added the tags New Defect Oct 2, 2011
  • _ForgeUser5462223 posted a comment Oct 18, 2011

    Here is a working fix for the 4.3 PTR as of 10/18/11, taken from this thread: http://forums.wowace.com/showthread.php?t=5290&page=116

    - Download and this modified version of LibAbacus-3.0: Link Removed: http://www.mediafire.com/?vdg6h3b6ex47fac

    - Extract to \Interface\Addons\

    The issue was with line 118 in LibAbacus-3.0.lua (the library EBB uses to display bars):

    "local inf = 1/0"

    To fix this, 1/0 simply gets replaced with some random massive number. eg:

    "local inf = 9223372036854775807"

    This solution can most likely be applied to a bunch of other 4.3-broken, non-updated addons - simply find any examples of "local inf = 1/0" in any lua file and replace it with a massive number like above.


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