mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Revert "Decapitalize non-nicknamed on 4->5 transfer"
This reverts commit 904dc84b52
.
This commit is contained in:
parent
1de685c6d8
commit
ab735de2d9
1 changed files with 2 additions and 2 deletions
|
@ -404,8 +404,8 @@ namespace PKHeX.Core
|
|||
BitConverter.GetBytes((ushort)0).CopyTo(pk5.Data, 0x86);
|
||||
pk5.Ball = Ball;
|
||||
|
||||
// Transfer Nickname and OT Name, update encoding -- removes all caps if no nickname
|
||||
pk5.Nickname = pk5.IsNicknamed ? Nickname : PKX.GetSpeciesNameGeneration(pk5.Species, pk5.Language, 5);
|
||||
// Transfer Nickname and OT Name, update encoding
|
||||
pk5.Nickname = Nickname;
|
||||
pk5.OT_Name = OT_Name;
|
||||
|
||||
// Fix Level
|
||||
|
|
Loading…
Reference in a new issue