diff --git a/PKHeX.Core/Saves/SAV6.cs b/PKHeX.Core/Saves/SAV6.cs index 3040a1330..296b7d3d9 100644 --- a/PKHeX.Core/Saves/SAV6.cs +++ b/PKHeX.Core/Saves/SAV6.cs @@ -462,7 +462,7 @@ public float Z get => BitConverter.ToSingle(Data, Trainer1 + 0x14); set { - var val = BitConverter.GetBytes(value * 18); + var val = BitConverter.GetBytes(value); val.CopyTo(Data, Trainer1 + 0x14); val.CopyTo(Data, Trainer1 + 0x14 + 0xF4); }