From 5a1347ec5069997cd690a79558281312588b7795 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Tue, 12 Sep 2023 13:01:32 -0400 Subject: [PATCH] Devcmd updated --- src/engine/devcmd/cmds/GetHeightCmd.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index b9c770c2..f2d61089 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -41,7 +41,6 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Current Zone : " + currentZone.getName()); this.throwbackInfo(playerCharacter, "Heightmap Zone : " + heightmapZone.getName()); - this.throwbackInfo(playerCharacter, "Zone Altitude : " + heightmapZone.getWorldAltitude()); this.throwbackInfo(playerCharacter, "Height returned: " + currentHeight); Vector2f zoneLoc = ZoneManager.worldToZoneSpace(playerCharacter.getLoc(), heightmapZone); @@ -49,7 +48,6 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Grid : " + (int) gridSquare.x + "x" + (int) gridSquare.y); this.throwbackInfo(playerCharacter, "Parent : " + parentZone.getName()); - this.throwbackInfo(playerCharacter, "Zone Altitude : " + heightmapZone.getWorldAltitude()); this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight); this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight()); }