mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
Fix friendship reverting
changing how the code worked ;)
This commit is contained in:
parent
9145578597
commit
068becc050
1 changed files with 1 additions and 1 deletions
|
@ -3233,7 +3233,7 @@ namespace PKHeX
|
|||
if (!CHK_Nicknamed.Checked)
|
||||
updateNickname(null, null);
|
||||
|
||||
TB_Friendship.Text = ((int)PKX.Friendship().Rows[Util.getIndex(CB_Species)][1]).ToString();
|
||||
TB_Friendship.Text = PKX.getBaseFriendship(Util.getIndex(CB_Species)).ToString();
|
||||
|
||||
if (CB_EggLocation.SelectedIndex == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue