This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What steps will reproduce the problem?1.Any activity that used to raise hunter pet happiness2.Combat with hunter pet active. Passive or other stances.3.Just world travel with hunter pet out.
What is the expected output? What do you see instead?Happiness for hunter pets has been removed from the game. Apparently the x-perl pet options still want to check for happiness, even when all happiness options are unchecked.
What version of the product are you using?x-perl unite frames 3.1.3
Do you have an error log of what happened?3x XPerl_PlayerPet-3.1.3\XPerl_Player_Pet.lua:249: attempt to call global "GetPetHappiness" (a nil value)XPerl-3.1.3\XPerl_Init.lua:685: in function <XPerl\XPerl_Init.lua:667><in C code>XPerl-3.1.3\XPerl_Init.lua:148: in function "XPerl_pcall"XPerl-3.1.3\XPerl_Init.lua:417: in function "XPerl_Init"XPerl-3.1.3\XPerl_Globals.lua:417: in function <XPerl\XPerl_Globals.lua:389>XPerl-3.1.3\XPerl_Globals.lua:447: in function <XPerl\XPerl_Globals.lua:426>
Locals:nil
Please provide any additional information below.As stated above. Pet happiness is no longer in the game, yet the lua's still have GetPetHappiness listed. The above error was captured via BugSack.
to fix the errors I was getting from xperl_player_pet.lua I went to the Happiness section of the lua in a notepad, and changed the line local happiness, damagePercentage = GetPetHappiness(); to local happiness, damagePercentage = 3; Seems to have stopped the errors so far, for now anyway.
local happiness, damagePercentage = GetPetHappiness()
local happiness, damagePercentage = 3, 100
Thanks BrknSoul. I knew about the 3 happiness, but didn't even think about the 100 damagepercent.
This is a dupe of http://www.wowace.com/addons/xperl/tickets/1117-pet-fram-error/
To post a comment, please login or register a new account.