Browse Source

DevCmd update.

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

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

@ -38,9 +38,9 @@ public class GetHeightCmd extends AbstractDevCmd { @@ -38,9 +38,9 @@ public class GetHeightCmd extends AbstractDevCmd {
float parentHeight = HeightMap.getWorldHeight(parentZone, playerCharacter.getLoc());
this.throwbackInfo(playerCharacter, "Current Altitude : " + currentHeight);
this.throwbackInfo(playerCharacter, "Current absY : " + currentZone.getAbsY());
this.throwbackInfo(playerCharacter, "Current Y : " + currentZone.getYCoord());
this.throwbackInfo(playerCharacter, "Parent Altitude : " + parentHeight);
this.throwbackInfo(playerCharacter, "Parent absY : " + parentZone.getAbsY());
this.throwbackInfo(playerCharacter, "Parent Y : " + parentZone.getYCoord());
this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight());
this.throwbackInfo(playerCharacter, "Character Height to start swimming: " + playerCharacter.centerHeight);

Loading…
Cancel
Save