Increment wild encounter count on add capture

This commit is contained in:
Kurt 2018-11-27 08:53:56 -08:00
parent 20c42a0f01
commit 15b6ef0597
2 changed files with 4 additions and 0 deletions

View File

@ -768,6 +768,8 @@ private void AddCountAcquired(PKM pkm)
AddRecord(pkm.WasEgg ? 009 : 007); // egg, capture
if (pkm.CurrentHandler == 1)
AddRecord(012); // trade
if (!pkm.WasEgg)
AddRecord(005); // wild encounters
}
protected override void SetDex(PKM pkm)

View File

@ -992,6 +992,8 @@ private void AddCountAcquired(PKM pkm)
AddRecord(pkm.WasEgg ? 008 : 006); // egg, capture
if (pkm.CurrentHandler == 1)
AddRecord(011); // trade
if (!pkm.WasEgg)
AddRecord(004); // wild encounters
}
protected override void SetDex(PKM pkm)