new mob patrolling system

This commit is contained in:
2023-04-16 12:48:23 -05:00
parent cfa59d8012
commit 028135f859
4 changed files with 70 additions and 4 deletions
+5 -1
View File
@@ -81,7 +81,11 @@ public class aiInfoCmd extends AbstractDevCmd {
output += mob.getName() + newline;
if(mob.BehaviourType != null) {
output += "BehaviourType: " + mob.BehaviourType.toString() + newline;
output += "Behaviour Helper Type: " + mob.BehaviourType.BehaviourHelperType.toString() + newline;
if(mob.BehaviourType.BehaviourHelperType != null) {
output += "Behaviour Helper Type: " + mob.BehaviourType.BehaviourHelperType.toString() + newline;
} else{
output += "Behaviour Helper Type: NULL" + newline;
}
output += "Wimpy: " + mob.BehaviourType.isWimpy + newline;
output += "Agressive: " + mob.BehaviourType.isAgressive + newline;
output += "Can Roam: " + mob.BehaviourType.canRoam + newline;