forked from MagicBane/Server
Output conforms with client
This commit is contained in:
@@ -46,11 +46,11 @@ public class GetHeightCmd extends AbstractDevCmd {
|
|||||||
this.throwbackInfo(playerCharacter, "Global Height: " + heightmapZone.worldAltitude);
|
this.throwbackInfo(playerCharacter, "Global Height: " + heightmapZone.worldAltitude);
|
||||||
this.throwbackInfo(playerCharacter, "Sea Level: " + heightmapZone.seaLevel);
|
this.throwbackInfo(playerCharacter, "Sea Level: " + heightmapZone.seaLevel);
|
||||||
this.throwbackInfo(playerCharacter, "Grid : " + Math.floor(gridSquare.x) + "x" + Math.floor(gridSquare.y));
|
this.throwbackInfo(playerCharacter, "Grid : " + Math.floor(gridSquare.x) + "x" + Math.floor(gridSquare.y));
|
||||||
this.throwbackInfo(playerCharacter, "Height returned: " + currentHeight);
|
this.throwbackInfo(playerCharacter, "Height returned: " + Math.ceil(currentHeight));
|
||||||
|
|
||||||
this.throwbackInfo(playerCharacter, "------------");
|
this.throwbackInfo(playerCharacter, "------------");
|
||||||
this.throwbackInfo(playerCharacter, "Parent : " + parentZone.zoneName);
|
this.throwbackInfo(playerCharacter, "Parent : " + parentZone.zoneName);
|
||||||
this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight);
|
this.throwbackInfo(playerCharacter, "Height returned : " + Math.ceil(parentHeight));
|
||||||
this.throwbackInfo(playerCharacter, "------------");
|
this.throwbackInfo(playerCharacter, "------------");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user