Tweak stat retrieval logic

This commit is contained in:
Kurt 2015-11-25 22:46:16 -08:00
parent c9d0db23ac
commit 520af0ff55

View File

@ -1453,7 +1453,7 @@ public PersonalInfo(byte[] data)
public int FormeOffset;
public int FormeIndex(int species, int forme)
{
return forme == 0 ? species : FormeOffset;
return FormStats == 0 ? species : FormStats + forme - 1;
}
public int RandomGender
{