diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 9b60b6b..fe09df6 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -634,8 +634,12 @@ void updateMovement() var pos = _process.getSetLocalCoords(); if (positionPanel.Visibility == Visibility.Visible) { + var isRiding = _process.isRiding() ? "R" : ""; + var posPlayer = _process.getSetPlayerLocalCoords(); + var posTorrent = _process.getSetTorrentLocalCoords(); var mapCoords = _process.getMapCoords(); - localPos.Text = $"Local: [{pos.Item1:F2} {pos.Item2:F2} {pos.Item3:F2}]"; + //localPos.Text = $"Local: [{pos.Item1:F2} {pos.Item2:F2} {pos.Item3:F2}]"; //switches between player and torrent + localPos.Text = $"P: [{posPlayer.Item1:F2} {posPlayer.Item2:F2} {posPlayer.Item3:F2}] T: [{posTorrent.Item1:F2} {posTorrent.Item2:F2} {posTorrent.Item3:F2}] {isRiding}"; var mapRotDeg = mapCoords.Item4 * 180 / Math.PI; var mapIDstr = TeleportHelper.mapIDString(mapCoords.Item5); mapPos.Text = $"Map: [{mapCoords.Item1:F2} {mapCoords.Item2:F2} {mapCoords.Item3:F2}] rotation: [{mapRotDeg:F1}°]"; diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index e27ee18..7659be2 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -51,6 +51,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.5.8.1")] -[assembly: AssemblyFileVersion("1.5.8.1")] +[assembly: AssemblyVersion("1.5.8.2")] +[assembly: AssemblyFileVersion("1.5.8.2")] //must include all four parts. parsing a version pads the FRONT with zeroes, in some cases, not the back as you might expect.