View Single Post
06-11-11, 10:11 AM   #7
Aftermathhqt
A Molten Giant
 
Aftermathhqt's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 784
Not need for so much code! this works perfect.

LUA Code:
  1. local function WorgenFix(self, unit)
  2.     if self:GetModel() and self:GetModel().find and self:GetModel():find("worgenmale") then
  3.         self:SetCamera(1)
  4.     end
  5. end

And add to your portraits.

LUA Code:
  1. Portrait.PostUpdate = WorgenFix
  Reply With Quote