diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index 2b7eca27..b189d499 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -27,7 +27,6 @@ public class GetHeightCmd extends AbstractDevCmd { protected void _doCmd(PlayerCharacter playerCharacter, String[] words, AbstractGameObject target) { - Zone currentZone; Zone parentZone; @@ -39,19 +38,19 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Zone : " + currentZone.getName()); this.throwbackInfo(playerCharacter, "Altitude : " + currentHeight); - this.throwbackInfo(playerCharacter, "Parent : " + currentZone.getName()); + this.throwbackInfo(playerCharacter, "Parent : " + parentZone.getName()); this.throwbackInfo(playerCharacter, "Altitude : " + parentHeight); this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight()); } @Override protected String _getHelpString() { - return "Temporarily Changes SubRace"; + return "Queries heightmap engine"; } @Override protected String _getUsageString() { - return "' /subrace mobBaseID"; + return "' /getheight"; } }