Plans to update for Phase 5 MOP? #2235


Open
  • user_ji5wwukfqu30w0s3 created this issue Jun 8, 2026

    Really missing my Unit frames right now! One of my favorite addons, its unrivaled. Hoping you are planning to update and sorry for pestering you if that process has already begun. Thanks!

  • mrwandr posted a comment Jun 12, 2026

    Joining to this request and really waiting for updates!

  • mrwandr posted a comment Jun 13, 2026

    I found the solution working for me. You need to add the following code in file "ShadowedUnitFrames.lua" right after the line "local L = ShadowUF.L":

     

    -- Fix for MoP Classic 5.5.4: DebuffTypeColor was removed by Blizzard
    if not DebuffTypeColor then
    DebuffTypeColor = {
    ["Magic"] = {r = 0.2, g = 0.6, b = 1.0},
    ["Curse"] = {r = 0.6, g = 0.0, b = 1.0},
    ["Disease"] = {r = 0.6, g = 0.4, b = 0.0},
    ["Poison"] = {r = 0.0, g = 0.5, b = 0.0},
    ["none"] = {r = 0.8, g = 0.0, b = 0.0},
    }
    end


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