From 44b9ba911dc261ac092930cf1a701a3ad6b0bed8 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Fri, 15 Sep 2023 17:29:51 -0400 Subject: [PATCH] Indices added to command output. --- src/engine/devcmd/cmds/GetHeightCmd.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index 64c470b2..7fda3a6e 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -59,6 +59,10 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "------------"); this.throwbackInfo(playerCharacter, "Parent : " + parentZone.getName()); this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight); + this.throwbackInfo(playerCharacter, "[" + (gridSquare.x) + "][" + (gridSquare.y) + "]"); + this.throwbackInfo(playerCharacter, "[" + (gridSquare.x + 1) + "][" + (gridSquare.y) + "]"); + this.throwbackInfo(playerCharacter, "[" + (gridSquare.x) + "][" + (gridSquare.y + 1) + "]"); + this.throwbackInfo(playerCharacter, "[" + (gridSquare.x + 1) + "][" + (gridSquare.y + 1) + "]"); } @Override