From b923392b53bcec09301cbfbe7b1d6d6e03996e02 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Mon, 11 Sep 2023 11:18:22 -0400 Subject: [PATCH] DevCmd update. --- src/engine/devcmd/cmds/GetHeightCmd.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index e93e65e0..1a951102 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -37,7 +37,8 @@ public class GetHeightCmd extends AbstractDevCmd { float currentHeight = HeightMap.getWorldHeight(currentZone, playerCharacter.getLoc()); float parentHeight = HeightMap.getWorldHeight(parentZone, playerCharacter.getLoc()); - this.throwbackInfo(playerCharacter, "Altitude : " + currentHeight); + this.throwbackInfo(playerCharacter, "Current Altitude : " + currentHeight); + this.throwbackInfo(playerCharacter, "Current absY : " + currentZone.getAbsY()); this.throwbackInfo(playerCharacter, "Parent Altitude : " + parentHeight); this.throwbackInfo(playerCharacter, "Parent absY : " + parentZone.getAbsY());