Dominos

Dominos

19M Downloads

Pet bar doesn't appear

venzeg opened this issue ยท 4 comments

commented

Addon Version
8.3.1-classic

World of Warcraft Version
Classic

I'm a druid and don't have pet bar required for most of the times. But in some encounters it doesn't appear as expected. Currently, can't control a tank in Darkmoon faire. It seems that code

function PetBar:GetShowStates()
	return '[@pet,exists,nopossessbar]show;hide'
end

is not working correctly thinking that no pet does exist. If I remove "exists" part from the code, pet bar starts to appear properly, but now it always shows pet bar during character login:
petbar

Would be grateful for a fix.

Regards

commented

The simplest case might be this for classic:

function PetBar:GetShowStates()
    return '[pet]show;hide'
end
commented

This is implemented the beta, in case you've not had a chance to try it.

commented

Soz for a long response, it works fine for me on beta

commented

Yay