Get Name error - need Help! #10


Open
  • Forge_User_35233393 created this issue Apr 8, 2019

    11696x CooldownCount\CooldownCount-8.0.0.lua:311: Attempt to access forbidden object from code tainted by an AddOn
    [C]: in function `GetName'
    CooldownCount\CooldownCount-8.0.0.lua:311: in function <CooldownCount\CooldownCount.lua:310>
    [C]: in function `CooldownFrame_Set'
    ...eBlizzard_NamePlates\Blizzard_NamePlates.lua:569: in function `UpdateBuffs'
    ...eBlizzard_NamePlates\Blizzard_NamePlates.lua:178: in function `OnUnitAuraUpdate'
    ...eBlizzard_NamePlates\Blizzard_NamePlates.lua:60: in function <...eBlizzard_NamePlates\Blizzard_NamePlates.lua:42>

    Locals:
    InCombatSkipped

  • Forge_User_35233393 posted a comment Apr 15, 2019

    hello support?

  • lapt0r posted a comment Jun 21, 2020

    You can manually patch this by modifying the CooldownCount.SetCooldown function with the following code snippet.  This will cause the function to exit early when attempting to read a forbidden value and preventing the error from occurring.

     

        if frame:IsForbidden() then
            return
        end
     
     

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