DevCmd Updated

This commit is contained in:
2023-09-11 13:57:05 -04:00
parent 9664c99e06
commit cf1547d077
+3 -4
View File
@@ -27,7 +27,6 @@ public class GetHeightCmd extends AbstractDevCmd {
protected void _doCmd(PlayerCharacter playerCharacter, String[] words, protected void _doCmd(PlayerCharacter playerCharacter, String[] words,
AbstractGameObject target) { AbstractGameObject target) {
Zone currentZone; Zone currentZone;
Zone parentZone; Zone parentZone;
@@ -39,19 +38,19 @@ public class GetHeightCmd extends AbstractDevCmd {
this.throwbackInfo(playerCharacter, "Zone : " + currentZone.getName()); this.throwbackInfo(playerCharacter, "Zone : " + currentZone.getName());
this.throwbackInfo(playerCharacter, "Altitude : " + currentHeight); 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, "Altitude : " + parentHeight);
this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight()); this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight());
} }
@Override @Override
protected String _getHelpString() { protected String _getHelpString() {
return "Temporarily Changes SubRace"; return "Queries heightmap engine";
} }
@Override @Override
protected String _getUsageString() { protected String _getUsageString() {
return "' /subrace mobBaseID"; return "' /getheight";
} }
} }