Browse Source

traget name added to aiInfoCmd

master
FatBoy-DOTC 1 year ago
parent
commit
545163f60b
  1. 1
      src/engine/devcmd/cmds/aiInfoCmd.java

1
src/engine/devcmd/cmds/aiInfoCmd.java

@ -102,6 +102,7 @@ public class aiInfoCmd extends AbstractDevCmd { @@ -102,6 +102,7 @@ public class aiInfoCmd extends AbstractDevCmd {
for(Map.Entry<Integer,Boolean> entry : mob.playerAgroMap.entrySet()){
output += "Player ID: " + entry.getKey() + " Is Safemode: " + entry.getValue() + newline;
}
output += "Current Target: " + mob.getCombatTarget().getName() + newline;
}
throwbackInfo(pc, output);
}

Loading…
Cancel
Save