mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Increment wild encounter count on add capture
This commit is contained in:
parent
20c42a0f01
commit
15b6ef0597
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user