From eb6e3fbbe96c7844f6ea011d1fe4181c4ffdbc88 Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 20 Nov 2018 19:15:38 -0800 Subject: [PATCH] Don't reset friendship, only for this format Friendship affects stats, keep current friendship when updating the trainer. --- PKHeX.Core/PKM/PB7.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/PB7.cs b/PKHeX.Core/PKM/PB7.cs index 7c9edbddc..d57963b3c 100644 --- a/PKHeX.Core/PKM/PB7.cs +++ b/PKHeX.Core/PKM/PB7.cs @@ -536,7 +536,7 @@ private void TradeHT(string SAV_Trainer, int SAV_COUNTRY, int SAV_REGION, int SA CurrentHandler = 1; if (HT_Name != SAV_Trainer) { - HT_Friendship = PersonalInfo.BaseFriendship; + HT_Friendship = CurrentFriendship; // PersonalInfo.BaseFriendship; HT_Affection = 0; } HT_Name = SAV_Trainer;