Browse Source

proper isBoxed info command

lakebane
FatBoy-DOTC 4 weeks ago
parent
commit
c849bf0a1d
  1. 2
      src/engine/devcmd/cmds/InfoCmd.java

2
src/engine/devcmd/cmds/InfoCmd.java

@ -347,7 +347,7 @@ public class InfoCmd extends AbstractDevCmd {
output += "Target Loc: " + targetPC.loc + newline; output += "Target Loc: " + targetPC.loc + newline;
output += "Player Loc: " + pc.loc + newline; output += "Player Loc: " + pc.loc + newline;
output += "Distance Squared: " + pc.loc.distanceSquared(targetPC.loc) + newline; output += "Distance Squared: " + pc.loc.distanceSquared(targetPC.loc) + newline;
output += "IsBoxed: " + pc.isBoxed; output += "IsBoxed: " + targetPC.isBoxed;
break; break;
case NPC: case NPC:

Loading…
Cancel
Save