From df5cbbd5b7f60fa6cf6dc802cb2aa894ed39fc48 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 6 Jan 2016 23:01:48 -0800 Subject: [PATCH] Fix Z coord saving Reference the Z numericUpDown instead of the map's. --- SAV/SAV_Trainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SAV/SAV_Trainer.cs b/SAV/SAV_Trainer.cs index 17055ddfb..f5373dae8 100644 --- a/SAV/SAV_Trainer.cs +++ b/SAV/SAV_Trainer.cs @@ -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);