Dug around for a second; Prat uses Babble-Class-2.2 library to get class colors, which in turn uses the API function RAID_CLASS_COLORS as expected. In other words, the addon is asking the game which color to use for which class (was certainly new to me to see pink used for shaman, as a Wrath babby, but obviously makes sense).
If you really want, here's a hacky way to do what you want:
Go to Addons\Prat\libs\Babble-Class-2.2 and open the Lua file.
Go to line 123, which reads:
- Code: Select all
if RAID_CLASS_COLORS and RAID_CLASS_COLORS[class] then
return RAID_CLASS_COLORS[class].r, RAID_CLASS_COLORS[class].g, RAID_CLASS_COLORS[class].b
Change the "if" to "elseif" (no space) and paste the following before it:
- Code: Select all
if RAID_CLASS_COLORS and RAID_CLASS_COLORS["Shaman"] then
return 0, 122, 222
That should work. I guess. I'm not a programmer, just some idiot who learned C++ and Java in highschool. Basically you're telling it "wait wait, if it's a shaman just go ahead and make it this color before asking the game". Shouldn't affect your paladin color, either.
If it doesn't work I'll actually bother to test it and get it right for you, lol.