Browse Source

DevCmd Updated

feature-workorder
MagicBot 1 year ago
parent
commit
cf1547d077
  1. 7
      src/engine/devcmd/cmds/GetHeightCmd.java

7
src/engine/devcmd/cmds/GetHeightCmd.java

@ -27,7 +27,6 @@ public class GetHeightCmd extends AbstractDevCmd { @@ -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 { @@ -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";
}
}

Loading…
Cancel
Save