LoadedCamel / MidsReborn

Mids' Reborn : Hero Designer
GNU General Public License v3.0
24 stars 7 forks source link

Incarnate - Lore - Phantom pet missing #133

Closed Army-Of-None closed 2 years ago

Army-Of-None commented 2 years ago

Describe the bug For Incarnate, Lore. Phantom is missing on the list of available pets

To Reproduce Steps to reproduce the behavior:

  1. Click on 'Incarnates'
  2. Click on 'Lore'
  3. In first column, scroll down to 'Polar Lights' pets
  4. Between Nemesis and Polar Lights should be Phantom.

Expected behavior Phantom pet options should be listed

Screenshots Example after I tested a fix: image

Desktop (please complete the following information):

Additional context Fix seems to be a simple typo on frmIncarnate.cs, line 241. 'Phantoms' when it should be 'Phantom'

Bad: newPowerList.AddRange(ParseIncarnate(myPowers.ToList(), setName, "Phantoms")); Fix: newPowerList.AddRange(ParseIncarnate(myPowers.ToList(), setName, "Phantom"));