Travel form support for low-level toons #30


  • New
  • Defect
Open
Assigned to _ForgeUser1181105
  • _ForgeUser111534 created this issue Jul 14, 2009

    What steps will reproduce the problem?
    1. Level a Shaman to 20
    2. 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

  • _ForgeUser111534 added the tags New Defect Jul 14, 2009

To post a comment, please login or register a new account.