From 12e073ca46439f61bce31557c4533883558cdbcc Mon Sep 17 00:00:00 2001 From: MagicBot Date: Sun, 15 Oct 2023 13:47:35 -0400 Subject: [PATCH] Dev cmd updated --- src/engine/devcmd/cmds/GetHeightCmd.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index 0f493de2..74cc6e69 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -58,7 +58,8 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Parent Zone: " + parentZone.zoneName); this.throwbackInfo(playerCharacter, "Grid : " + "[" + gridSquare.x + "]" + "[" + gridSquare.y + "]"); - this.throwbackInfo(playerCharacter, "Offset: " + "[" + normalizedOffset.x + "]" + "[" + normalizedOffset.y + "]"); + this.throwbackInfo(playerCharacter, "Normalized offset: " + "[" + childZoneOffset.x + "]" + "[" + childZoneOffset.y + "]"); + this.throwbackInfo(playerCharacter, "Normalized offset: " + "[" + normalizedOffset.x + "]" + "[" + normalizedOffset.y + "]"); this.throwbackInfo(playerCharacter, "Blend: " + heightmapZone.terrain.terrainBlend(childZoneOffset)); this.throwbackInfo(playerCharacter, "------------");