mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Fixed error getting Z coordinate (#3567)
This commit is contained in:
parent
b900361ad3
commit
5f3516c3ce
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public sealed class Situation6 : SaveBlock<SAV6>
|
||||||
|
|
||||||
public float Z
|
public float Z
|
||||||
{
|
{
|
||||||
get => ReadSingleLittleEndian(Data.AsSpan(Offset + 0x14));
|
get => ReadSingleLittleEndian(Data.AsSpan(Offset + 0x14)) / 18;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
var span = Data.AsSpan(Offset + 0x14);
|
var span = Data.AsSpan(Offset + 0x14);
|
||||||
|
|
Loading…
Reference in a new issue