From 9664c99e06f1aef856ac02ff42386ca30db33ecf Mon Sep 17 00:00:00 2001 From: MagicBot Date: Mon, 11 Sep 2023 13:50:56 -0400 Subject: [PATCH] DevCmd Updated --- src/engine/devcmd/cmds/GetHeightCmd.java | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index e693d41d..2b7eca27 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -37,17 +37,11 @@ public class GetHeightCmd extends AbstractDevCmd { float currentHeight = HeightMap.getWorldHeight(currentZone, playerCharacter.getLoc()); float parentHeight = HeightMap.getWorldHeight(parentZone, playerCharacter.getLoc()); - this.throwbackInfo(playerCharacter, "Current Altitude : " + currentHeight); - this.throwbackInfo(playerCharacter, "Current Y : " + currentZone.getAbsY()); - this.throwbackInfo(playerCharacter, "Parent Altitude : " + parentHeight); - this.throwbackInfo(playerCharacter, "Parent Y : " + parentZone.getAbsY()); - + this.throwbackInfo(playerCharacter, "Zone : " + currentZone.getName()); + this.throwbackInfo(playerCharacter, "Altitude : " + currentHeight); + this.throwbackInfo(playerCharacter, "Parent : " + currentZone.getName()); + this.throwbackInfo(playerCharacter, "Altitude : " + parentHeight); this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight()); - this.throwbackInfo(playerCharacter, "Character Height to start swimming: " + playerCharacter.centerHeight); - - this.throwbackInfo(playerCharacter, "Water Level : " + currentZone.getSeaLevel()); - this.throwbackInfo(playerCharacter, "Character Water Level Above : " + (playerCharacter.getCharacterHeight() + currentHeight - currentZone.getSeaLevel())); - } @Override