Fix Z coord saving

Reference the Z numericUpDown instead of the map's.
This commit is contained in:
Kurt 2016-01-06 23:01:48 -08:00
parent 5bace04b0e
commit df5cbbd5b7

View File

@ -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);