From f18acf3e68bdd4deef259a9018111d922cb08786 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Sun, 17 Sep 2023 13:08:51 -0400 Subject: [PATCH] DevCmd output updated --- src/engine/devcmd/cmds/GetHeightCmd.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index a909b0d2..c486a29f 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -56,17 +56,20 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight); this.throwbackInfo(playerCharacter, "------------"); + this.throwbackInfo(playerCharacter, "Min: " + heightmapZone.getHeightMap().zone_maxBlend + " Max: " + heightmapZone.getHeightMap().zone_maxBlend); + + if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.maxBlend)) { - this.throwbackInfo(playerCharacter, "Blend: Max / Child"); + this.throwbackInfo(playerCharacter, "Blend: Max (Child)"); return; } if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.minBlend)) { - this.throwbackInfo(playerCharacter, "Blend: Min / LERP"); + this.throwbackInfo(playerCharacter, "Blend: Min (LERP)"); return; } - this.throwbackInfo(playerCharacter, "Blend: None / Parent"); + this.throwbackInfo(playerCharacter, "Blend: None (Parent)"); }