mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-28 19:37:24 -05:00
Fix Z coord saving
Reference the Z numericUpDown instead of the map's.
This commit is contained in:
parent
5bace04b0e
commit
df5cbbd5b7
|
|
@ -469,7 +469,7 @@ private void save()
|
|||
// Copy Position
|
||||
SAV.M = (int)NUD_M.Value;
|
||||
SAV.X = (float)NUD_X.Value;
|
||||
SAV.Z = (float)NUD_M.Value;
|
||||
SAV.Z = (float)NUD_Z.Value;
|
||||
SAV.Y = (float)NUD_Y.Value;
|
||||
|
||||
SAV.BP = UInt16.Parse(TB_BP.Text);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user