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. Level a Shaman to 202. Learn "Ghost Wolf"3.
What is the expected output? What do you see instead?
Coconuts should use Ghost Wolf form even though the Shaman has no mounts. Currently Coconuts does not recognize the form.
What version of the product are you using?
3.0.174-beta
Do you have an error log of what happened?
Please provide any additional information below.
Changing the last clause of Coconuts:GetStateBasedOnModifiers() to the following appears to resolve the issue:
if( Mounts.Ground.Normal.Current ) then self.Mode = "Mount"; return Mounts.Ground.Normal.Current; end--if if( self.CurrentForm.Ground ) then self.Mode = "Mount"; return self.CurrentForm.Ground; end--if
To post a comment, please login or register a new account.