attempt to fix boxed combat

This commit is contained in:
2025-03-08 20:07:11 -06:00
parent 96122b5beb
commit 6bac4d830a
3 changed files with 27 additions and 44 deletions
+2 -1
View File
@@ -346,7 +346,8 @@ public class InfoCmd extends AbstractDevCmd {
output += "Hidden : " + targetPC.getHidden() + newline;
output += "Target Loc: " + targetPC.loc + newline;
output += "Player Loc: " + pc.loc + newline;
output += "Distance Squared: " + pc.loc.distanceSquared(targetPC.loc);
output += "Distance Squared: " + pc.loc.distanceSquared(targetPC.loc) + newline;
output += "IsBoxed: " + pc.isBoxed;
break;
case NPC: